You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to add another ACL rule to an existing ACL that was initially deployed. The plan is generated correctly but when it is applied, a terraform crash occurs:
Terraform Version
Terraform v0.12.20
provider.ibm v1.2.1
provider.template v2.1.2
Affected Resource(s)
ibm_is_network_acl
Terraform Configuration Plan:
First applied the following:
# module.vpc.ibm_is_network_acl.acls["default"] will be created
+ resource "ibm_is_network_acl" "acls" {
+ id = (known after apply)
+ name = "default"
+ resource_controller_url = (known after apply)
+ resource_crn = (known after apply)
+ resource_group_name = (known after apply)
+ resource_name = (known after apply)
+ vpc = (known after apply)
+ rules {
+ action = "allow"
+ destination = "0.0.0.0/0"
+ direction = "inbound"
+ id = (known after apply)
+ ip_version = (known after apply)
+ name = "icmp"
+ source = "0.0.0.0/0"
+ subnets = (known after apply)
+ icmp {
+ code = 1
+ type = 1
}
}
+ rules {
+ action = "allow"
+ destination = "0.0.0.0/0"
+ direction = "inbound"
+ id = (known after apply)
+ ip_version = (known after apply)
+ name = "inbound-http"
+ source = "0.0.0.0/0"
+ subnets = (known after apply)
+ tcp {
+ port_max = 80
+ port_min = 80
+ source_port_max = 80
+ source_port_min = 80
}
}
+ rules {
+ action = "allow"
+ destination = "0.0.0.0/0"
+ direction = "inbound"
+ id = (known after apply)
+ ip_version = (known after apply)
+ name = "inbound-ssh"
+ source = "0.0.0.0/0"
+ subnets = (known after apply)
+ tcp {
+ port_max = 22
+ port_min = 22
+ source_port_max = 22
+ source_port_min = 22
}
}
}
The new ACL rule should have been applied without causing a crash
Actual Behavior
A terraform crash occurs. I have the crash.log if needed but haven't looked to see if there is any sensitive data. Please let me know if this is needed
Steps to Reproduce
Please list the steps required to reproduce the issue, for example:
Create an ACL with some rules
Apply the plan: terraform apply
Modify the terraform plan to add another acl rule to the existing acl
Apply the plan: terraform apply
Terraform crashes
The text was updated successfully, but these errors were encountered:
I am trying to add another ACL rule to an existing ACL that was initially deployed. The plan is generated correctly but when it is applied, a terraform crash occurs:
Terraform Version
Terraform v0.12.20
Affected Resource(s)
ibm_is_network_acl
Terraform Configuration Plan:
First applied the following:
Then applied:
Expected Behavior
The new ACL rule should have been applied without causing a crash
Actual Behavior
A terraform crash occurs. I have the crash.log if needed but haven't looked to see if there is any sensitive data. Please let me know if this is needed
Steps to Reproduce
Please list the steps required to reproduce the issue, for example:
Create an ACL with some rules
Apply the plan: terraform apply
Modify the terraform plan to add another acl rule to the existing acl
Apply the plan: terraform apply
Terraform crashes
The text was updated successfully, but these errors were encountered: