Skip to content

Commit

Permalink
PRODENG-2805 clean up terraform templates (#525)
Browse files Browse the repository at this point in the history
- remove GigGuardian alert secrets
- some renaming to make thing similar between the two tf examples

Signed-off-by: James Nesbitt <[email protected]>
  • Loading branch information
james-nesbitt authored Dec 3, 2024
1 parent 5da259b commit dda3317
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ aws = {
launchpad = {
drain = false

mcr_version = "23.0"
mke_version = "3.7.3"
mcr_version = "23.0.15"
mke_version = "3.7.15"
msr_version = ""

mke_connect = {
username = "admin"
password = ""
password = "" // an MKE passwords must be provided
insecure = false
}

Expand Down Expand Up @@ -52,4 +52,6 @@ nodegroups = {
}

// set a windows password, if you have windows nodes
// windows passwords must match a pattern, or connections will fail.
// use something like: `testp@ss!`
// windows_password = ""
6 changes: 4 additions & 2 deletions examples/terraform/aws-simple/terraform.tfvars.template
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ launchpad = {

mke_connect = {
username = "admin"
password = "m!rantis2024"
password = "" // an MKE passwords must be provided
insecure = false
}
}
Expand Down Expand Up @@ -63,4 +63,6 @@ nodegroups = {
}

// set a windows password, if you have windows nodes
# windows_password = "testp@ss!"
// windows passwords must match a pattern, or connections will fail.
// use something like: `testp@ss!`
# windows_password = ""

0 comments on commit dda3317

Please sign in to comment.