diff --git a/README.md b/README.md index d139a97..bdd6730 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ The BIG-IP VEs have the following features / modules enabled: | Name | Description | Type | Default | |------|-------------|------|---------| -| projectPrefix | REQUIRED: Prefix to prepend to all objects created, minus Windows Jumpbox | `string` | `"bedfe9b4"` | +| projectPrefix | REQUIRED: Prefix to prepend to all objects created, minus Windows Jumpbox | `string` | `"bedfe9c5"` | | adminUserName | REQUIRED: Admin Username for All systems | `string` | `"xadmin"` | | adminPassword | REQUIRED: Admin Password for all systems | `string` | `"pleaseUseVault123!!"` | | location | REQUIRED: Azure Region: usgovvirginia, usgovarizona, etc | `string` | `"usgovvirginia"` | diff --git a/three_tier/firewall/bigip.tf b/three_tier/firewall/bigip.tf index 97188d2..3955549 100644 --- a/three_tier/firewall/bigip.tf +++ b/three_tier/firewall/bigip.tf @@ -410,7 +410,7 @@ data template_file vm01_do_json { timezone = var.timezone admin_user = var.adminUserName admin_password = var.adminPassword - bigip_regKey = var.licenses["license1"] != "" ? var.licenses["license1"] : "" + license = var.licenses["license1"] != "" ? var.licenses["license1"] : "" } } @@ -437,7 +437,7 @@ data template_file vm02_do_json { timezone = var.timezone admin_user = var.adminUserName admin_password = var.adminPassword - bigip_regKey = var.licenses["license2"] != "" ? var.licenses["license2"] : "" + license = var.licenses["license2"] != "" ? var.licenses["license2"] : "" } } diff --git a/variables.tf b/variables.tf index 80e90bc..4507647 100644 --- a/variables.tf +++ b/variables.tf @@ -2,7 +2,7 @@ variable projectPrefix { type = string description = "REQUIRED: Prefix to prepend to all objects created, minus Windows Jumpbox" - default = "bedfe9b4" + default = "bedfe9c5" } variable adminUserName { type = string