Skip to content

Instantly share code, notes, and snippets.

@number5
Created January 17, 2018 06:39
Show Gist options
  • Save number5/fa3fcf644fa26aaa9934f86bfd699056 to your computer and use it in GitHub Desktop.
Save number5/fa3fcf644fa26aaa9934f86bfd699056 to your computer and use it in GitHub Desktop.
use json file in terraform example
resource "aws_iam_policy" "test1" {
name = "test1Policy"
policy = "${file("policy.json")}"
}
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:Get*",
"s3:List*"
],
"Resource": "*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment