Change Terraform resource attribute
Recipe ID
org.openrewrite.terraform.ChangeResourceAttributeArtifact
org.openrewrite.recipe:rewrite-terraformChange the value of a Terraform resource attribute if it matches a given pattern.
Usage
You’ll need the Moderne CLI configured before running the command below.
mod run . --recipe org.openrewrite.terraform.ChangeResourceAttribute --recipe-option "resourceName=aws_db_instance" --recipe-option "attributeName=engine_version" --recipe-option "newValue=8.0"If the recipe isn’t available locally, install it with:
mod config recipes jar install org.openrewrite.recipe:rewrite-terraform:3.14.6Options
| Name | Type | Description |
|---|---|---|
resourceNamerequired | String | A Terraform resource type, without the quotes. e.g. aws_db_instance |
attributeNamerequired | String | The name of the attribute to change. e.g. engine_version |
oldValuePattern | String | A regular expression to match the current attribute value. Only matching attributes will be changed. If not provided, all values will be changed. For quoted string values, match against the content without quotes. e.g. 5\.7.* |
newValuerequired | String | The new value to set. For quoted string attributes, provide the value without quotes. e.g. 8.0 |
Data tables
Structured output this recipe can produce.
- Source files that had resultsSource files that were modified by the recipe run.
org.openrewrite.table.SourcesFileResults - Source files that had search resultsSearch results that were found during the recipe run.
org.openrewrite.table.SearchResults - Source files that errored on a recipeThe details of all errors produced by a recipe run.
org.openrewrite.table.SourcesFileErrors - Recipe performanceStatistics used in analyzing the performance of recipes.
org.openrewrite.table.RecipeRunStats