CloudFormation User Parameter as another parameter Default Value

0

Hello,

I keep getting this error

Template Format error parameter default has to be string and i want to use a Parameter as another Parameter Default.

Parameters:
  AppId:
    Type: String
    Default: "mygradecard-iac"
  RepositoryName:
    Type: String
    Default: !Sub "${AppId}-Respository"
    Description: "Name of the Repository to be Created"

Thank you

Nafiu
질문됨 9달 전431회 조회
1개 답변
2
수락된 답변

Hi,

You cannot do that so directly: as said by the message, a parameter is a string, you cannot call something like !Sub in a parameter defintion

But, there are solutions: I personally use SSM parameters to achieve what you want. See https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html

BasicParameter:
    Type: AWS::SSM::Parameter
    Properties:
      Name: MyParam
      Type: String
      Value: 'xyz'
      Description: SSM Parameter for running date command.

In Value, you can use !Sub or any function.

Then, you obtain your value by calling !GetAtt MyParam.Value. Additional advantage, the SSM console will allow you to easily see the result of your value computation.

It works great for me. I wish that it will be same for you.

Best,

Didier

profile pictureAWS
전문가
답변함 9달 전
  • Thank you, Very Explanatory Resource

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠