Skip to content

Commit

Permalink
3 tier
Browse files Browse the repository at this point in the history
- replaced regKey with license
  • Loading branch information
Mikej81 committed Dec 8, 2020
1 parent 7f369b9 commit 4f2373c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"` |
Expand Down
4 changes: 2 additions & 2 deletions three_tier/firewall/bigip.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"] : ""
}
}

Expand All @@ -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"] : ""
}
}

Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4f2373c

Please sign in to comment.