Skip to content

Commit

Permalink
Update main.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
spy86 authored Mar 13, 2024
1 parent 8f5cf75 commit 50b92d9
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions examples/route-table/main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
module "route-table" {
source = "spy86/route-table/azure"
version = "1.0.6route_table"
name = "dev-routetable"
provider "azurerm" {
features {}
}

module "route_table" {
source = "Think-Cube/route-table/azure"
version = "1.0.0"
route_table_name = "routetable"
resource_group_name = "weu-test-rg"
resource_group_location = "West Europe"
environment = "dev"
Expand All @@ -12,4 +16,11 @@ module "route-table" {
{ name = "Route-03", address_prefix = "0.0.0.0/0", next_hop_type = "Internet" }
]
route_table_disable_bgp_route_propagation = "true"
default_tags = {
Administrator = "John Doe"
Department = "IT"
CostCentre = "CC123"
ContactPerson = "Jane Smith"
ManagedByTerraform = "True"
}
}

0 comments on commit 50b92d9

Please sign in to comment.