[PATCH v3 26/36] terraform/oci: Clean up the route table resource
Chuck Lever <[email protected]>
| Newsgroups | dev.linux.lists.kdevops |
|---|---|
| Message-ID | <[email protected]> |
From: Chuck Lever <[email protected]> Reviewed-by: Luis Chamberlain <[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" } } -- 2.51.0