Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

issue #161 demo react app s3bucket #175

Open
wants to merge 1 commit into
base: development
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions devops/DeployCloudformationS3Bucket/deployStackS3Bucket.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def main(input_initials):
initials = args.input_initials
logger.info("Your Initials Entered: " + initials + "\n")

#Gererates unique id
#Generates unique id
unique_id = ''.join(random.SystemRandom().choice(string.ascii_lowercase + string.digits) for _ in range(5))

#Gets the date
Expand Down Expand Up @@ -105,7 +105,7 @@ def _stack_template_file():
stack_template = fd.read()
return stack_template

# Verifies if stack already exists
#Verifies if stack already exists
def _stack_exists(stack_name):
paginator = cf_client.get_paginator('list_stacks')
for page in paginator.paginate():
Expand Down