From dae204748edc788b7bda0549f29c371eb6b5e3f5 Mon Sep 17 00:00:00 2001 From: Sebastian Rieger Date: Mon, 30 May 2022 17:56:48 +0200 Subject: [PATCH] changed default LabInstanceProfile --- .../counter-demo/aws-cloudformation/start-with-vpc.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/example-projects/counter-demo/aws-cloudformation/start-with-vpc.py b/example-projects/counter-demo/aws-cloudformation/start-with-vpc.py index 62a062d..0ec6192 100644 --- a/example-projects/counter-demo/aws-cloudformation/start-with-vpc.py +++ b/example-projects/counter-demo/aws-cloudformation/start-with-vpc.py @@ -18,7 +18,7 @@ region = 'us-east-1' stackName = 'cloudcomp-counter-demo-stack' # keyName = 'srieger-pub' keyName = 'vockey' -roleName = 'LabRole' +roleName = 'LabInstanceProfile' ################################################################################################ # @@ -56,3 +56,6 @@ response = cfClient.create_stack( }, ], ) + +print("You can observe the state of the stack using status.py, cli commands 'aws cloudformation ...' or the web " + "console.")