github.com/sathish1597/hashicorp-terraform@v0.11.12-beta1/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  }