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
The documentation for the default_route of the cloudconnexa_network resource lists that it should have a value (required) and a type (optional) attrib
I provided a cloudconnexa_network resource block that includes such a default_network block, but then running terraform validate returns the following error:
tf validate
╷
│ Error: Missing required argument
│
│ on networks.tf line 13, in resource "cloudconnexa_network""awsusw2":
│ 13: default_route {
│
│ The argument "subnet" is required, but no definition was found.
╵
╷
│ Error: Unsupported argument
│
│ on networks.tf line 14, in resource "cloudconnexa_network""awsusw2":
│ 14: value = "100.96.1.26/28"
│
│ An argument named "value" is not expected here.
My terraform resource:
resource"cloudconnexa_network""awsusw2" {
egress=falseinternet_access="LOCAL"name="AWS US West 2"default_connector {
name=cloudconnexa_connector.default.namevpn_region_id=cloudconnexa_connector.default.vpn_region_id
}
default_route {
value="100.96.1.26/28"type="IP_V4"
}
}
The text was updated successfully, but these errors were encountered:
The documentation for the default_route of the
cloudconnexa_network
resource lists that it should have avalue
(required) and atype
(optional) attribI provided a
cloudconnexa_network
resource block that includes such adefault_network
block, but then runningterraform validate
returns the following error:My terraform resource:
The text was updated successfully, but these errors were encountered: