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
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# requiredroute_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 chainingtype="VCN"# Required
}
I would like it to look like:
network_details {
id=each.value.vcn_id# requiredroute_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 chainingtype="VCN"# Requiredvcn_route_type=each.value.vcn_route_type!=null? each.value.vcn_route_type:null# (Optional) (Updatable) string
}
Community note
Description
Users should be able to set
vcn_route_type
when using the module and creatingdrg_vcn_attachments
.New or existing resource(s)
oci_core_drg_attachment.vcns
Example Terraform configuration
The current code looks like:
I would like it to look like:
References
The text was updated successfully, but these errors were encountered: