Skip to content

Instantly share code, notes, and snippets.

@sloanlance
Forked from kdabir/heredoc_json.bash
Created May 2, 2017 16:29
Show Gist options
  • Save sloanlance/51ea31b060592c21e9fa7bfd516683f2 to your computer and use it in GitHub Desktop.
Save sloanlance/51ea31b060592c21e9fa7bfd516683f2 to your computer and use it in GitHub Desktop.
json in heredoc in bash script alongwith variable substitution
_BUCKET_NAME="foo.example.com"
_POLICY=$(cat <<EOT
{
"Version":"2012-10-17",
"Statement":[{
"Sid":"PublicReadForGetBucketObjects",
"Effect":"Allow",
"Principal": "*",
"Action":["s3:GetObject"],
"Resource":["arn:aws:s3:::${_BUCKET_NAME}/*"]
}]
}
EOT
)
echo ${_POLICY}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment