How to Pass the version for SSM Parameter while creating on CloudFormation

0

I am getting the below error while creating the SSM Parameter via CF passign version.

Property validation failure: [Encountered unsupported properties in {/}: [Version]] My Securitygroup.Yaml

AWSTemplateFormatVersion: 2010-09-09 Description: Basic SSH Security Group.

Resources: MySSHSecurityGroup: Type: AWS::EC2::SecurityGroup Properties: GroupDescription: my new SSH SG SecurityGroupIngress: - IpProtocol: tcp FromPort: '22' ToPort: '22' CidrIp: 0.0.0.0/0

MYSSHSecuritygroupParameter: Type: AWS::SSM::Parameter Properties: Name: Security Type: String Value: !Ref MySSHSecurityGroup Tier: Standard Version: 1 Description: My SSH Securitygroup on SSM Parameter

Please help on this how to pass with Version number in CF, i need to create difference type of versions needs to create on the Same Parameter using CF.

2回答
1

You can't specify the version of Parameter when you create it, which is a result of the underlying API also not allowing that. Parameters will have a new version created automatically when they are updated.

I'd suggest instead creating multiple Parameters for your different requirements, which will also allow you better visibility and tracking of changes in the future. You can use / characters in your Parameter names to create a hierarchy to help with organisation (and access control).

profile pictureAWS
エキスパート
James_S
回答済み 2年前
0

You could pass the Parameter Store parameter key in as a string and the version as a string. Then use a dynamic reference to that parameter. See: SSM parameters

profile pictureAWS
エキスパート
kentrad
回答済み 2年前
  • I have tried its not working below is my Yaml script for only SSM Parameter. Property validation failure: [Encountered unsupported properties in {/}: [Version]] MYSSHSecuritygroupParameter: Type: AWS::SSM::Parameter Properties: Name: Security Type: String Value: !Ref MySSHSecurityGroup Tier: Standard Policies: '[{"Type":"String","Version":"1.0"}]' #Version: 1.0 Description: My SSH Securitygroup on SSM Parameter

  • Version is not supported. How are you using this parameter?

  • You have said like "Parameter Store parameter key in as a string and the version as a string" i passed it throws error.

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ