mealesbia
mealesbia

Reputation: 935

How to use importValue and join in Cloudformation

I have a stack which depends on a value which is exported in a different stack (value is supertest)

I try to use it as below

OriginAccessIdentity: !Join [ "", [ "origin-access-identity/cloudfront/", !ImportValue: !Sub "supertest-${Environment}" ] ]

But I got a syntax error while this works (hardcoding the supertest value)

OriginAccessIdentity: !Join [ "", [ "origin-access-identity/cloudfront/", "lol-dev" ] ]

Upvotes: 9

Views: 11184

Answers (1)

Julio Faerman
Julio Faerman

Reputation: 13501

I believe that syntax is not valid.

Try this:

OriginAccessIdentity:
  Fn::Join:
    - ""
    - - "origin-access-identity/cloudfront/"
      - Fn::ImportValue: !Sub "supertest-${Environment}"

Here is another example where i use it similarly: https://github.com/faermanj/Sitting-Ducks/blob/master/cfn-beanstalk-env.yml

Upvotes: 20

Related Questions