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

d/aws_imagebuilder_container_recipe - new data source #23040

Merged
Merged
3 changes: 3 additions & 0 deletions .changelog/22965.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:new-resource
aws_imagebuilder_container_recipe
```
3 changes: 3 additions & 0 deletions .changelog/23040.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:new-data-source
aws_imagebuilder_container_recipe
```
2 changes: 2 additions & 0 deletions internal/provider/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -609,6 +609,7 @@ func Provider() *schema.Provider {

"aws_imagebuilder_component": imagebuilder.DataSourceComponent(),
"aws_imagebuilder_components": imagebuilder.DataSourceComponents(),
"aws_imagebuilder_container_recipe": imagebuilder.DataSourceContainerRecipe(),
"aws_imagebuilder_distribution_configuration": imagebuilder.DataSourceDistributionConfiguration(),
"aws_imagebuilder_distribution_configurations": imagebuilder.DataSourceDistributionConfigurations(),
"aws_imagebuilder_image": imagebuilder.DataSourceImage(),
Expand Down Expand Up @@ -1389,6 +1390,7 @@ func Provider() *schema.Provider {
"aws_iam_user_ssh_key": iam.ResourceUserSSHKey(),

"aws_imagebuilder_component": imagebuilder.ResourceComponent(),
"aws_imagebuilder_container_recipe": imagebuilder.ResourceContainerRecipe(),
"aws_imagebuilder_distribution_configuration": imagebuilder.ResourceDistributionConfiguration(),
"aws_imagebuilder_image": imagebuilder.ResourceImage(),
"aws_imagebuilder_image_pipeline": imagebuilder.ResourceImagePipeline(),
Expand Down
Loading