如何使用私有 AMI 而不是 public AMI 编写 cloudformation

How to write cloudformation using private AMI rather than public AMI

我想用yaml文件写一个cloudformation。我知道 public AMI 的格式。但是我迷失了如何在 yaml 文件中添加私有 AMI。我在网上搜索了解决方案,有人推荐使用 AWS 系统管理器服务。我想问有没有办法避免使用系统管理器服务来实现设置我的yaml文件。这是我的 yaml 文件供您参考。

AmiId:
  Type: 'AWS::SSM::Parameter::Value<AWS::EC2::Image::Id>'
  AllowedValues: ['%list of my public AMI%
                 '/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2',
                 '/aws/service/ami-windows-latest/Windows_Server-2017-English',
                 'ami-id']
                  'ami-id' this is where to insert my private Ami .
                  Default: 'ami-id'

不能像现在这样混合AllowedValues。您可以使用 ami-ids 或参数存储值。如果您不想使用参数存储值,那么您只需使用 ami-ids:

AmiId:
  Type: AWS::EC2::Image::Id
  AllowedValues: [ami-id1, ami-id2, ami-id3]
  Default: ami-id1