Skip to content
This repository was archived by the owner on Nov 1, 2023. It is now read-only.

Commit f43c0c3

Browse files
committed
Refactor template inputs
1 parent 51af000 commit f43c0c3

File tree

3 files changed

+525
-321
lines changed

3 files changed

+525
-321
lines changed

scripts/vault-upstart.conf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ respawn
88
console log
99

1010
script
11+
if [ -f "/etc/service/vault" ]; then
12+
. /etc/service/vault
13+
fi
14+
1115
# Make sure to use all our CPUs, because Vault can block a scheduler thread
1216
export GOMAXPROCS=`nproc`
1317

templates/quickstart-hashicorp-vault-master.template

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,10 @@
2121
]
2222
}, {
2323
"Label": {
24-
"default": "Consul Setup"
24+
"default": "Vault Setup"
2525
},
2626
"Parameters": [
27-
"AtlasToken",
28-
"ConsulNodes",
29-
"ConsulInstanceType",
27+
"EmailAddress",
3028
"KeyPairName"
3129
]
3230
}, {
@@ -90,6 +88,10 @@
9088
"Description": "Public/private key pairs allow you to securely connect to your instance after it launches",
9189
"Type": "AWS::EC2::KeyPair::KeyName"
9290
},
91+
"EmailAddress": {
92+
"Type": "String",
93+
"Description": "Email Address for SNS Topic. Alarms for Vault instance memory utilzation"
94+
},
9395
"NATInstanceType": {
9496
"AllowedValues": [
9597
"t2.nano",

0 commit comments

Comments
 (0)