-
Notifications
You must be signed in to change notification settings - Fork 807
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated rg prefixes and removed commented lines
- Loading branch information
1 parent
39f24e4
commit 4f1a6c1
Showing
6 changed files
with
30 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
output "resource_group_name" { | ||
value = azurerm_resource_group.rg.name | ||
} | ||
|
||
output "firewall_name" { | ||
value = azurerm_firewall.azfw.name | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,27 @@ | ||
// Create Variables for Location and Tags | ||
variable "resource_group_location" { | ||
type = string | ||
description = "Location for all resources." | ||
default = "eastus" | ||
} | ||
// Create Firewall Variables | ||
|
||
variable "resource_group_name_prefix" { | ||
type = string | ||
description = "Prefix for the Resource Group Name that's combined with a random id so name is unique in your Azure subcription." | ||
default = "rg" | ||
} | ||
|
||
variable "firewall_sku_name" { | ||
type = string | ||
description = "SKU name for the firewall." | ||
default = "Premium" # Valid values are Standard and Premium | ||
} | ||
|
||
// Create Virtual Machine Sku Size Variables | ||
variable "virtual_machine_size" { | ||
type = string | ||
description = "Size of the virtual machine." | ||
default = "Standard_D2_v3" | ||
} | ||
|
||
// Create Admin Username and Password | ||
variable "admin_username" { | ||
default = "azureuser" | ||
} |