Re: [PATCH v2 27/37] terraform/oci: Clean up white space in route table resource
Daniel Gomez <[email protected]>
| Newsgroups | dev.linux.lists.kdevops |
|---|---|
| Organization | kernel.org |
| Message-ID | <[email protected]> |
On 02/09/2025 15.54, Chuck Lever wrote: > From: Chuck Lever <[email protected]> > > Signed-off-by: Chuck Lever <[email protected]> > --- > terraform/oci/main.tf | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/terraform/oci/main.tf b/terraform/oci/main.tf > index 45a4b4bc0c63..15660aa02614 100644 > --- a/terraform/oci/main.tf > +++ b/terraform/oci/main.tf > @@ -103,10 +103,12 @@ resource "oci_core_route_table" "kdevops_route_table" { > compartment_id = data.oci_identity_compartments.kdevops_compartment.compartments[0].id > display_name = "kdevops route table" > vcn_id = one(oci_core_vcn.kdevops_vcn[*].id) > + > route_rules { > destination = "0.0.0.0/0" > destination_type = "CIDR_BLOCK" > network_entity_id = one(oci_core_internet_gateway.kdevops_internet_gateway[*].id) > + route_type = "STATIC" I think the patch title is misleading. It's doing something else. > } > } >