Reputation: 935
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
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