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
resource"equinix_network_acl_template""acl_templ" {
name="my-acl"description="An ACL to determine who can access our new device"project_id=data.equinix_network_account.ashburn.project_idinbound_rule {
subnet="<some ip>/32"protocol="TCP"src_port="22"dst_port="22"description="SSH access to our device"
}
}
The top level "description" field is marked Optional in the docs but in reality, the underlying equinix api requires it. The error code is amorphous and does not indicate anything RE missing fields.
The docs should be updated to reflect this required field.
Steps to Reproduce
Create an ACL and omit the top level "description"
The text was updated successfully, but these errors were encountered:
Terraform Version
1.8.0
Equinix Provider Version
1.36.4
Effected Terraform Resources
equinix_network_acl_template
Terraform Config Files
Failing resource:
Working resource:
Debug Output
A 500 error is returned saying, contact support.
Panic Output
No response
Expected Behavior
The terraform resource can be created when all required fields are provided: https://registry.terraform.io/providers/equinix/equinix/latest/docs/resources/equinix_network_acl_template
Actual Behavior
The top level "description" field is marked Optional in the docs but in reality, the underlying equinix api requires it. The error code is amorphous and does not indicate anything RE missing fields.
The docs should be updated to reflect this required field.
Steps to Reproduce
Create an ACL and omit the top level "description"
The text was updated successfully, but these errors were encountered: