Open
Description
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'.
I am using v0.0.24, freshly installed into VSCode.
I suppose I am doing something wrong, but I can't determine what :)
Metadata
Metadata
Assignees
Labels
No labels