github.com/jorgemarey/terraform@v0.6.7-0.20151113041428-536ba76b21bb/config/test-fixtures/heredoc.tf (about)

     1  provider "aws" {
     2    access_key = "foo"
     3    secret_key = "bar"
     4  }
     5  
     6  resource "aws_iam_policy" "policy" {
     7      name = "test_policy"
     8      path = "/"
     9      description = "My test policy"
    10      policy = <<EOF
    11  {
    12    "Version": "2012-10-17",
    13    "Statement": [
    14      {
    15        "Action": [
    16          "ec2:Describe*"
    17        ],
    18        "Effect": "Allow",
    19        "Resource": "*"
    20      }
    21    ]
    22  }
    23  EOF
    24  }