Closed nilo closed 7 years ago
Hey @nilo, thanks for the issue!
If you specify the correct provider for the ca-central-1
region does the import work?
ie:
$ terraform import -provider=ca-central-provider aws_s3_bucket.bucket states-tr
That's what I was looking for @grubernaut thanks!
Is there a minimum version of terraform
where this works?
I keep getting errors still on v.0.8.8
i am using latest version of terraform with s3 backend KMS and server side encryption and this work fine for me. Terraform v0.11.6 terraform import -provider=aws aws_s3_bucket.bucket_tfstates tfstates-dockerswarm-1
Acquiring state lock. This may take a few moments... aws_s3_bucket.bucket_tfstates: Importing from ID "tfstates-dockerswarm-1"... aws_s3_bucket.bucket_tfstates: Import complete! Imported aws_s3_bucket (ID: tfstates-dockerswarm-1) Imported aws_s3_bucket_policy (ID: tfstates-dockerswarm-1) aws_s3_bucket.bucket_tfstates: Refreshing state... (ID: tfstates-dockerswarm-1) aws_s3_bucket_policy.bucket_tfstates: Refreshing state... (ID: tfstates-dockerswarm-1)
Import successful!
The resources that were imported are shown above. These resources are now in your Terraform state and will henceforth be managed by Terraform.
Releasing state lock. This may take a few moments...
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.
If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.
Hi there, The problem: I have an S3 Bucket with my states on
ca-central-1
and all my other infra are onus-east-2
. I never created anything onus-east-2
when I ranterraform apply
I can't create a Bucket resource onca-central-1
that already exists, so I need to import it using something like:terraform import aws_s3_bucket.bucket states-terraform-stage
. When I do this I get this error:Terraform is trying to import the resource from
us-east-2
and not fromca-central-1
. A-region=
option should resolve the problem.Terraform Version
0.9.3
Affected Resource(s)
Expected Behavior
import an s3 bucket from another region.
Actual Behavior
It is trying to import a bucket from the same region of the provider.
Steps to Reproduce
ca-central-1
using AWS console eg:states-tr
aws_s3_bucket
with the provider point toca-central-1
with the same nameus-east-2
terraform import aws_s3_bucket.bucket states-tr