At the moment, we already have a live project running and would like to import its configuration into Terraform management.
The problem we ran into the first time was that we used the wrong project id and Terraform still told us "Import successful!", which led to a problem later when we ran terraform plan. This change makes sure we tell users what should be run on the import step, since importing existing projects is a pretty common use case.
edited: we found that the code snippets under examples/ had it explained better, but guess no harm to make the doc more clear? 😄
What kind of change does this PR introduce?
This is a simple documentation update.
What is the current behavior?
At the moment, we already have a live project running and would like to import its configuration into Terraform management.
The problem we ran into the first time was that we used the wrong project id and Terraform still told us "Import successful!", which led to a problem later when we ran
terraform plan
. This change makes sure we tell users what should be run on the import step, since importing existing projects is a pretty common use case.edited: we found that the code snippets under
examples/
had it explained better, but guess no harm to make the doc more clear? 😄