我有一个非常简单的 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 检索正在部署模板的区域中的密钥对列表?
而不是
Type: String
使用Type: AWS::EC2::KeyPair::KeyName
,它应该为您填充列表。这应该这样做:
查看AWS 特定的参数类型以获取您可以使用的参数类型的完整列表。有些填充可用值(如 SSH 密钥、VPC ID、子网 ID 等),有些则不填充(例如 AMI 映像 ID)。
希望有帮助:)