-
Notifications
You must be signed in to change notification settings - Fork 9.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
aws_transfer_server does not currently support endpoint_type: "VPC" #11724
Comments
Related to #11569 |
Is there an ETA on this issue? It's not fixed from what I can see. I'm using Terraform 0.12 with the latest modules (A fresh Terraform Init on Wednesday 26, August 2020) The error after importing the resource and then trying to apply is: expected endpoint_type to be one of [PUBLIC VPC_ENDPOINT], got VPC |
@BrokenFlame this issue will be resolved by #12599 |
Support for the |
This has been released in version 3.8.0 of the Terraform AWS provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template for triage. Thanks! |
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 feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thanks! |
Community Note
Terraform Version
Affected Resource(s)
Terraform Configuration Files
Debug Output
Panic Output
Expected Behavior
Updated endpoint type to VPC.
Actual Behavior
Produced error above:
Error: expected endpoint_type to be one of [PUBLIC VPC_ENDPOINT], got VPC
Steps to Reproduce
Save changes to server and start again.
If you now
terraform apply
again, you'll see that the endpoint type for theaws_transfer_server
wants to change as follows:~ endpoint_type = "VPC" -> "PUBLIC"
. If you try to change the terraform config toendpoint_type = "VPC"
then you get the following error:Error: expected endpoint_type to be one of [PUBLIC VPC_ENDPOINT], got VPC
.Important Factoids
It seems like AWS is encouraging people to use the "VPC" endpoint instead of the "VPC_ENDPOINT" endpoint type in the AWS Console and the docs (see reference below). The VPC_ENDPOINT is not available as an option if you create the Transfer server from scratch in the AWS console.
References
The text was updated successfully, but these errors were encountered: