Update AWS template
- Add a prefix to the key pair name
This commit is contained in:
parent
6c55c19b44
commit
2b80fb4ad8
1 changed files with 1 additions and 1 deletions
|
@ -572,7 +572,7 @@
|
|||
"'''",
|
||||
"def handler(event, context):",
|
||||
" try:",
|
||||
" keyName = ''.join(random.SystemRandom().choice(string.ascii_letters + string.digits) for _ in range(10))",
|
||||
" keyName = 'setup-ipsec-vpn-' + ''.join(random.SystemRandom().choice(string.ascii_letters + string.digits) for _ in range(10))",
|
||||
" region = event['ResourceProperties']['Region']",
|
||||
" ec2 = boto3.client('ec2',region)",
|
||||
" response = ec2.create_key_pair(",
|
||||
|
|
Loading…
Add table
Reference in a new issue