Skip to content

Instantly share code, notes, and snippets.

@RaphHaddad
Last active April 27, 2023 01:22
Show Gist options
  • Save RaphHaddad/6e2a585fed1ad43ffe20d1b675bd1320 to your computer and use it in GitHub Desktop.
Save RaphHaddad/6e2a585fed1ad43ffe20d1b675bd1320 to your computer and use it in GitHub Desktop.

Terraform Tricks

Delete and Recreate

Use the -replace flag

Targeting resource within module

terraform apply -replace="module.mssql_database.azurerm_mssql_database.mssql_database"

Targeting resource within root

terraform apply -replace="azurerm_mssql_database.mssql_database"

Targeting resource created with For_each root

terraform apply -replace="azurerm_mssql_database.mssql_database[\"DatabaseName\"]"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment