mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
feat(oci private network): add default route table and security list
management
This commit is contained in:
parent
07cbaca206
commit
fea4a43dcc
6 changed files with 47 additions and 16 deletions
13
tf/oci_common_private_network/default_route_table.tf
Normal file
13
tf/oci_common_private_network/default_route_table.tf
Normal 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"
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue