We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here is excerpt from my CloudFormation template for some Aurora stack:
AuroraClusterKey: Type: AWS::KMS::Key Properties: Description: !Sub "KMS key for - ${DBName}" EnableKeyRotation: true KeyPolicy: Statement: - Sid: !Sub '${DBName} Aurora PG Cluster KMS key policy' Effect: Allow Principal: AWS: - !Sub arn:aws:iam::${AWS::AccountId}:root Action: - kms:* Resource: "*"
But, all of the !Sub sections are marked as 'Unresolved Tag'.
!Sub
I am using v0.0.24, freshly installed into VSCode.
I suppose I am doing something wrong, but I can't determine what :)
The text was updated successfully, but these errors were encountered:
Ok, I'm silly enough not to read documentation properly. I had to include customTags snippet into my settiings.json file.
But I still have the issue, for this code snippet:
Type: AWS::KMS::Alias Properties: AliasName: !Sub - "alias/rds/${clusterKeyDef}-key" - { clusterKeyDef: { Fn::ImportValue: !Sub '${MasterStack}:KMSKeyPrefix' } } TargetKeyId: !Ref AuroraClusterKey
The code deploys fine with aws cloudformation deploy. The !Sub is added as a custom tag via settings.json.
aws cloudformation deploy
Sorry, something went wrong.
No branches or pull requests
Here is excerpt from my CloudFormation template for some Aurora stack:
But, all of the
!Sub
sections are marked as 'Unresolved Tag'.I am using v0.0.24, freshly installed into VSCode.
I suppose I am doing something wrong, but I can't determine what :)
The text was updated successfully, but these errors were encountered: