mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 18:01:01 -06:00
6ae3218f8a
Reproduces the issue reported by @svanharmelen in #3964.
16 lines
252 B
HCL
16 lines
252 B
HCL
provider "cloudstack" {
|
|
api_url = "bla"
|
|
api_key = "bla"
|
|
secret_key = "bla"
|
|
}
|
|
|
|
resource "cloudstack_firewall" "test" {
|
|
ipaddress = "192.168.0.1"
|
|
|
|
rule {
|
|
source_cidr = "10.0.0.0/8"
|
|
protocol = "tcp"
|
|
ports = ["80", "1000-2000"]
|
|
}
|
|
}
|