github.com/nevins-b/terraform@v0.3.8-0.20170215184714-bbae22007d5a/config/test-fixtures/attributes.tf (about)

     1  provider "cloudstack" {
     2    api_url = "bla"
     3    api_key = "bla"
     4    secret_key = "bla"
     5  }
     6  
     7  resource "cloudstack_firewall" "test" {
     8    ipaddress = "192.168.0.1"
     9  
    10    rule {
    11      source_cidr = "10.0.0.0/8"
    12      protocol = "tcp"
    13      ports = ["80", "1000-2000"]
    14    }
    15  }