github.com/adrian-bl/terraform@v0.7.0-rc2.0.20160705220747-de0a34fc3517/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  }