jsii.errors.JSIIError: The 'account' property must be a concrete value (action: 'DeployAction') #21830
Unanswered
afisher-stelligent
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi All--
Have a strange situation here... two CDK applications. App A exports a VPC id as an SSM parameter:
vpc_id = ssm.StringParameter(self, 'VPCID', parameter_name='/my/app/VPCID', string_value=vpc.vpc_id)
As we all know, in order to use SSM, you have to be account and region aware:
Environment variables are exported correctly and show up in a
env
command.App B is set up similarly, and includes a
DeployAction
for an ECS cluster:The error above occurs when the CDK attempts to add the action to the pipeline.
Beta Was this translation helpful? Give feedback.
All reactions