Answers for "the given plan file can no longer be applied because the state was changed by another operation afte the plan was created"

0

the given plan file can no longer be applied because the state was changed by another operation afte the plan was created

$ cat <<'EOF' >> main.tf
> resource "random_pet" "bucket_suffix" {}
> 
> resource "aws_s3_bucket" "example" {
>   bucket = "example-${random_pet.bucket_suffix.id}"
>   acl    = "private"
> 
>   tags = {
>     ThingToChange = "foo"
>   }
> }
> EOF
$ terraform init
# ...
$ terraform apply
# ...
$ $ sed -i 's/foo/bar/' main.tf
$ terraform plan -out=plan
# ...
$ sed -i 's/bar/baz/' main.tf
$ terraform apply
# ...
$ terraform apply plan
Error: Saved plan is stale

The given plan file can no longer be applied because the state was changed by
another operation after the plan was created.
Posted by: Guest on July-29-2021

Code answers related to "the given plan file can no longer be applied because the state was changed by another operation afte the plan was created"

Browse Popular Code Answers by Language