mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
13 lines
No EOL
316 B
HCL
13 lines
No EOL
316 B
HCL
|
|
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"
|
|
}
|
|
} |