Skip to content
New issue

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

AWS Image Builder resources doesn't get the stack level tags from CFN. #94

Open
srcndogan opened this issue Oct 6, 2023 · 2 comments
Open
Labels

Comments

@srcndogan
Copy link

Name of the resource
AWS::ImageBuilder::ImagePipeline

Description
Created a stack for resource type AWS::ImageBuilder::ImagePipeline

Resources:
ImagePipelineAllParameters:
Type: 'AWS::ImageBuilder::ImagePipeline'
Properties:
Name: 'image-pipeline-name-2'
Description: 'description'
ImageRecipeArn: arn:aws:imagebuilder:us-east-1:12345678:image-recipe/amazon-linux-2-with-latest-ssm-agent/0.0.1
InfrastructureConfigurationArn: arn:aws:imagebuilder:us-east-1:12345678:infrastructure-configuration/amazon-linux-2-with-latest-ssm-agent-infrastructure-configuration
ImageTestsConfiguration:
ImageTestsEnabled: false
TimeoutMinutes: 90
Schedule:
ScheduleExpression: 'cron(0 0 * * ? *)'
PipelineExecutionStartCondition: 'EXPRESSION_MATCH_ONLY'
Status: 'DISABLED'
Tags:
Key: Name
# Value: test
# test1: value1
Applied stack level tags as 'test1: value1' while creating the stack.
Resource got created and no tags being applied to resource.
Commented out the above Tags part and updated my stack, Tags got applied. So stack level tags are not being applied during the CREATE nor UPDATE operation.

I have tested this behavior for other resource types for Image Builder and none of them applying the stack level tags. List of resource types for CFN as below.

AWS::ImageBuilder::Component
AWS::ImageBuilder::Image
AWS::ImageBuilder::ImageRecipe
AWS::ImageBuilder::InfrastructureConfiguration
AWS::ImageBuilder::DistributionConfiguration
AWS::ImageBuilder::ImagePipeline
AWS::ImageBuilder::ContainerRecipe
Other Details
Types for Tags in the Image Builder resource are Map of String where usually Tags would be a List of string.
Workaround at the moment applying tags at resource level. However, expecting to apply stack level tags to resources above.

@rajbir1982
Copy link

Thank you Sercan for post this issue. And yes, tags applied to CFN are not populating to ImageBuilder resource created in that CFN

@maintain3r
Copy link

Any solution to fix the issue? Im trying to get may AMIs tagged withing img builder distribution config object.
Example:
BuilderDistributionConfig:
Type: AWS::ImageBuilder::DistributionConfiguration
Properties:
Name: !Sub "${AWS::StackName}-proxy-img-builder-distribution"
Distributions:
- Region: !Ref AWS::Region
AmiDistributionConfiguration:
Name: !Sub "proxyServiceAMI-${AWS::StackName}-${AWS::Region}-{{imagebuilder:buildDate}}"
AmiTags:
service: 'httpproxy'
builtby: 'imgbuilder'

The tags I put above don't get applied to my AMI. The pipeline works well with no issue and generates an AMI that I can use to create an ec2. The problem is how to add image Tags so that I can control better my ami fleet.
Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants