Support for User Data in Image Builder Recipes #21684
Labels
enhancement
Requests to existing resources that expand the functionality or scope.
service/imagebuilder
Issues and PRs that pertain to the imagebuilder service.
Milestone
Description
ImageBuilder supports the use of user data in an image build recipe. This is a necessity for AMIs that don't have SSM preinstalled. The cli supports support this feature with the
userDataOverride
argument.Potential Terraform Configuration
resource "aws_imagebuilder_image_recipe" "myrecipe" {
user_data_override = <<EOF
#!/bin/bash
etc...
EOF
}
The text was updated successfully, but these errors were encountered: