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
When creating a Kendra index the tags are correctly with the following:
KendraIndex: Type: AWS::Kendra::Index Properties: CapacityUnits: QueryCapacityUnits: 1 StorageCapacityUnits: 1 Description: Box and other source files Edition: ENTERPRISE_EDITION Name: "kendra-index" RoleArn: !GetAtt KendraIndexIamRole.Arn ServerSideEncryptionConfiguration: KmsKeyId: !Ref ProcessingKMSKey Tags: - Key: Environment Value: !Ref EnvironmentType - Key: MarketCode Value: jp - Key: Organization Value: <text> - Key: Owner Value: <text> - Key: Project Value: !Ref ProjectName - Key: test-tag Value: "test123"
Results in:
When changing the test-tag and redeploying:
KendraIndex: Type: AWS::Kendra::Index Properties: CapacityUnits: QueryCapacityUnits: 1 StorageCapacityUnits: 1 Description: Box and other source files Edition: ENTERPRISE_EDITION Name: "kendra-index" RoleArn: !GetAtt KendraIndexIamRole.Arn ServerSideEncryptionConfiguration: KmsKeyId: !Ref ProcessingKMSKey Tags: - Key: CostCenter Value: !FindInMap [EnvironmentToCostCenterMap, !Ref EnvironmentType, CostCenter] - Key: Environment Value: !Ref EnvironmentType - Key: MarketCode Value: jp - Key: Organization Value: <text> - Key: Owner Value: <text> - Key: Project Value: !Ref ProjectName - Key: test-tag Value: "test123345"
Results in the tag being deleted:
Expected behavior is for the tag value to be replaced.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When creating a Kendra index the tags are correctly with the following:
Results in:
When changing the test-tag and redeploying:
Results in the tag being deleted:
Expected behavior is for the tag value to be replaced.
The text was updated successfully, but these errors were encountered: