-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Community note
- Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
- Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
- If you are interested in working on this issue or have submitted a pull request, please leave a comment
Description
Users should be able to set vcn_route_type
when using the module and creating drg_vcn_attachments
.
New or existing resource(s)
oci_core_drg_attachment.vcns
Example Terraform configuration
The current code looks like:
network_details {
id = each.value.vcn_id # required
route_table_id = each.value.vcn_transit_routing_rt_id != null ? each.value.vcn_transit_routing_rt_id : null # optional. Only needed when using VCN Transit Routing or Network Appliance service chaining
type = "VCN" # Required
}
I would like it to look like:
network_details {
id = each.value.vcn_id # required
route_table_id = each.value.vcn_transit_routing_rt_id != null ? each.value.vcn_transit_routing_rt_id : null # optional. Only needed when using VCN Transit Routing or Network Appliance service chaining
type = "VCN" # Required
vcn_route_type = each.value.vcn_route_type != null ? each.value.vcn_route_type : null # (Optional) (Updatable) string
}
References
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request