feat(oci private network): add default route table and security list

management
This commit is contained in:
Kat Inskip 2024-06-09 12:28:03 -07:00
parent 07cbaca206
commit fea4a43dcc
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
6 changed files with 47 additions and 16 deletions

View file

@ -0,0 +1,13 @@
resource "oci_core_default_route_table" "this" {
manage_default_resource_id = oci_core_vcn.this.default_route_table_id
display_name = oci_core_vcn.this.display_name
route_rules {
network_entity_id = oci_core_internet_gateway.this.id
description = "Default route"
destination = "0.0.0.0/0"
}
}