Looking at OpenNEM the values for pricing, particularly during the mid to late 2000s, don't seem correct.
$ terraform plan | |
module.data_aws_ssm_parameter_path_to_a_parameter.data.aws_ssm_parameter.path_to_a_parameter: Reading... | |
Terraform used the selected providers to generate the following execution plan. Resource actions are indicated with the following symbols: | |
+ create | |
<= read (data resources) | |
Terraform planned the following actions, but then encountered a problem: |
FROM alpine:3.13 | |
RUN apk add --no-cache make | |
COPY . /app | |
WORKDIR /app | |
RUN make path |
# frozen_string_literal: true | |
require 'csv' | |
require 'fileutils' | |
require 'open-uri' | |
TEMP_DIRECTORY = 'tmp' | |
# Create temp file |
resource "aws_ecr_repository" "account_a" { | |
name = var.ecr_name | |
tags = local.tags | |
} | |
resource "aws_ecr_repository_policy" "account_a" { | |
repository = aws_ecr_repository.this.name | |
policy = data.aws_iam_policy_document.account_a.json |
# bastion-the-easy-way.sh | |
# | |
# Allowing you to easily bastion into a remote location! So nice! | |
# | |
# $ bastion path_to_target_key path_to_bastion_key target_ip_address bastion_ip_address target_user bastion_user | |
function bastion { | |
__message='Welcome to bastion the easy way!' | |
ssh -f -i ${2:-$__bastion_key} -L 6969:${3:-$__target_ip_address}:22 ${6:-ec2-user}@${4:-$__bastion_address} echo $__message | |
ssh -i ${1:-$__target_key} ${5:-ec2-user}@localhost -p 6969 -o "UserKnownHostsFile /dev/null" | |
} |
I hereby claim:
- I am jufemaiz on github.
- I am jufemaiz (https://keybase.io/jufemaiz) on keybase.
- I have a public key ASB-1QCzoC8jwVo-4WVzdQzqBqBRpka_DGTD5_6Z5u-wIAo
To claim this, I am signing this object:
# Shamelessly ripped from Delayed::Job tasks | |
# Ref: https://github.com/collectiveidea/delayed_job/blob/master/lib/delayed/tasks.rb | |
namespace :jobs do | |
namespace :container do | |
desc 'Clear the delayed_job queue.' | |
task clear: :environment do | |
Delayed::Job.delete_all | |
end | |
desc 'Start a delayed_job worker.' |
Note: This FlagPost was originally published on 24 July 2018. It has since been amended to reference the provisions of the Privacy Act 1988 relevant to the release of health information by private medical practitioners. As an adjunct task, it has also been updated to reflect developments since its original publication. The Library is committed to providing the highest quality information and analysis to the Parliament and always welcomes feedback on its work.
My Health Record (MHR) was introduced in June 2012 by the Gillard Labor Government originally as an opt-in system known as the Personally Controlled Electronic Health Record (PCEHR) before legislative amendments in 2015 introduced by the Abbott Coalition Government renamed it and laid the groundwork for it to become an opt-out system. Law enfo