-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
Transfer Family: Vpc Endpoint does not support Transfer Family in eu-central-2 region #25878
Comments
Are you able to find it as below?
and
|
When we created Transfer Family in eu-central-1 region, it used com.amazonaws.eu-central-1.transfer.server as VPC Endpoint service, and not com.amazonaws.eu-central-1.transfer @pahud are you saying that we should try to create Transfer Family with com.amazonaws.eu-central-2.transfer from CDK? Thanks in advance. |
Sorry I was wrong. I can confirm Please kindly reach out to AWS premium support to confirm the service availability. From what I can see from the console and CLI, it's very likely unavailable in eu-central-2. |
VPC_ENDPOINT type has been deprecated and not available in newer regions. It is replaced by the managed VPC endpoint type. |
This issue has not received a response in a while. If you want to keep this issue open, please leave a comment below and auto-close will be canceled. |
This works for me FYR. new transfer.CfnServer(this, 'SFTP', {
endpointType: 'VPC',
endpointDetails: {
vpcId: vpc.vpcId
},
protocols: ['SFTP'],
identityProviderType: 'SERVICE_MANAGED',
domain: 'S3'
}); |
VPC endpoint type is what we call managed VPC endpoint. With this you no longer need to create the VPC endpoint, the service manages the creation and deletion of the endpoint. What you specify instead is the vpcId for the creation of the endpoint and it works. |
Without custom VPC Endpont (TRANSFER_SERVER) I can now create Transfer Server in eu-central-2 region with this code in CDK: But now I don't have a way to get allocated IDs because we need them for NLB's target group. I found also those issues which seem the same: Do you have some idea how I should retrieve network interface ids now? |
At the end we used addressAllocationIds with EIPs in endpointDetails config of Transfer Server and removed usage of NLB. |
@zelu-zuehlke Can you show an example of how your setup looks like? I also have to do the same, using the EIPs in endpointDetails, but I have doubts selecting the Thanks. |
@zelu-zuehlke Good afternoon. Could you please confirm if this is still an issue or if we could close it. |
This issue has not received a response in a while. If you want to keep this issue open, please leave a comment below and auto-close will be canceled. |
@ashishdhingra yep, it's solved now and it is not an issue anymore. Thanks |
|
Describe the bug
During the creation of Transfer Family in eu-central-2 region from CDK inside of custom VPC, we are experiencing next error:
Stack Deployments Failed: Error: The stack named dev-NetworkStack failed to deploy: UPDATE_ROLLBACK_COMPLETE: The Vpc Endpoint Service 'com.amazonaws.eu-central-2.transfer.server' does not exist (Service: AmazonEC2; Status Code: 400; Error Code: InvalidServiceName; Request ID: e457b8e0-e4f4-4a51-be1b-550122f14aea; Proxy: null)
error
When I listed all the supported vpc endpoint services in eu-central-2 region with command:
aws ec2 describe-vpc-endpoint-services
I'm unable to find com.amazonaws.eu-central-2.transfer.server.
Transfer Family was released last week in eu-central-2 region.
Expected Behavior
Transfer Family can be successfully created from CDK inside of custom VPC in eu-central-2 region.
Current Behavior
Stack Deployments Failed: Error: The stack named dev-NetworkStack failed to deploy: UPDATE_ROLLBACK_COMPLETE: The Vpc Endpoint Service 'com.amazonaws.eu-central-2.transfer.server' does not exist (Service: AmazonEC2; Status Code: 400; Error Code: InvalidServiceName; Request ID: e457b8e0-e4f4-4a51-be1b-550122f14aea; Proxy: null)
error
Reproduction Steps
Steps to reproduce in eu-central-2:
Possible Solution
No response
Additional Information/Context
No response
CDK CLI Version
2.78.0
Framework Version
No response
Node.js Version
^10.9.1
OS
Windows
Language
Typescript
Language Version
No response
Other information
No response
The text was updated successfully, but these errors were encountered: