Skip to content
This repository was archived by the owner on Oct 9, 2021. It is now read-only.

Commit c3cd892

Browse files
committed
CFN parameter NumberofIAMUsers changed to NumberOfTeammates
1 parent ff2bed0 commit c3cd892

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

CloudFormation/CreateZombieWorkshop.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
},
1010

1111
"Parameters": {
12-
"NumberOfIAMUsers": {
13-
"Description": "Number of IAM users to be created for this stack",
12+
"NumberOfTeammates": {
13+
"Description": "How many teammates do you have? Input that here, one for each of your teammates. Don't include yourself",
1414
"Type": "Number",
1515
"MinValue": "0",
1616
"MaxValue": "10",
@@ -22,7 +22,7 @@
2222
"CreateIamResources": {
2323
"Fn::Not": [{
2424
"Fn::Equals": [
25-
{"Ref": "NumberOfIAMUsers"}, "0"
25+
{"Ref": "NumberOfTeammates"}, "0"
2626
]
2727
}]
2828
}
@@ -416,7 +416,7 @@
416416
"ServiceToken": { "Fn::GetAtt": ["IamUsersFunction", "Arn"] },
417417
"StackName": { "Ref": "AWS::StackName" },
418418
"region": { "Ref": "AWS::Region" },
419-
"IamUsers": { "Ref": "NumberOfIAMUsers"}
419+
"IamUsers": { "Ref": "NumberOfTeammates"}
420420
},
421421
"DependsOn": [
422422
"ZombieLabLambdaRole"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The [Zombie Microservices Workshop](http://aws.amazon.com/events/zombie-microser
2626

2727
2\. On the "Specify Details" page, your Stack is prepopulated with the name "ZombieWorkshopStack".
2828

29-
3\. For the parameter section, if you want to develop with a team and would like to create IAM Users in your account to grant them access, then specify how many teammates/users you want to be created in the **NumberOfIAMUsers** box. Otherwise, leave it defaulted to 0 and no additional users will be created. Click **Next**.
29+
3\. For the parameter section, if you want to develop with a team and would like to create IAM Users in your account to grant them access, then specify how many teammates/users you want to be created in the **NumberOfTeammates** box. Otherwise, leave it defaulted to 0 and no additional users will be created. Click **Next**. *If you create IAM users, an IAM group will also be created and those users will be added to that group. On deletion of the stack, those resources will be deleted for you*
3030

3131
4\. On the "Options" page, leave the defaults and click **Next**.
3232

0 commit comments

Comments
 (0)