我有一个非常简单的 CF 模板,可以创建一个 EC2 实例。密钥对被指定为参数。我希望自动填充可能的密钥对列表。
Resources:
MyInstance:
Type: AWS::EC2::Instance
Properties:
AvailabilityZone: eu-west-2a
ImageId: ami-0e80a462ede03e653
InstanceType: t3.nano
KeyName: !Ref SSHKey
Parameters:
SSHKey:
Type: String
Description: name of the key pair to ssh into the instance
AllowedValues:
# populate automatically
如何使用 CloudFormation 检索正在部署模板的区域中的密钥对列表?