Skip to content

Commit

Permalink
Review feedback applied
Browse files Browse the repository at this point in the history
Signed-off-by: philthoennissen <[email protected]>
  • Loading branch information
Phil-Thoennissen committed Oct 15, 2024
1 parent 3cbc6f3 commit 1663852
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ This example demonstrates the usage of the launch-pad module with default settin
```hcl
resource "azurerm_resource_group" "example" {
location = "germanywestcentral"
name = "example-resource-group"
name = "rg-example-dev-gwc-01"
}
resource "azurerm_virtual_network" "example" {
Expand Down
1 change: 0 additions & 1 deletion r-network.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ resource "azurerm_virtual_network" "this" {
tags = var.tags

address_space = var.virtual_network_address_space
# dns_servers = ["10.0.0.1", "10.0.0.1"]
}


Expand Down
8 changes: 7 additions & 1 deletion tests/remote/resources.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,14 @@ variable "resource_group_name" {
type = string
}

resource "random_string" "resource_group_suffix" {
length = 4
special = false
upper = false
}

resource "azurerm_resource_group" "tftest" {
name = var.resource_group_name
name = "${var.resource_group_name}-${random_string.resource_group_suffix.result}"
location = var.location
}

Expand Down

0 comments on commit 1663852

Please sign in to comment.