github.com/rstandt/terraform@v0.12.32-0.20230710220336-b1063613405c/config/testdata/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 }