github.com/turtlemonvh/terraform@v0.6.9-0.20151204001754-8e40b6b855e8/config/test-fixtures/attributes.tf.json (about)

     1  {
     2      "provider": {
     3          "cloudstack": {
     4              "api_url": "bla",
     5              "api_key": "bla",
     6              "secret_key": "bla"
     7          }
     8      },
     9      "resource": {
    10          "cloudstack_firewall": {
    11              "test": {
    12                  "ipaddress": "192.168.0.1",
    13                  "rule": [
    14                      {
    15                          "source_cidr": "10.0.0.0/8",
    16                          "protocol": "tcp",
    17                          "ports": [
    18                              "80",
    19                              "1000-2000"
    20                          ]
    21                      }
    22                  ]
    23              }
    24          }
    25      }
    26  }
    27