-
Notifications
You must be signed in to change notification settings - Fork 9.9k
Open
Labels
enhancementRequests to existing resources that expand the functionality or scope.Requests to existing resources that expand the functionality or scope.needs-triageWaiting for first response or review from a maintainer.Waiting for first response or review from a maintainer.service/transferIssues and PRs that pertain to the transfer service.Issues and PRs that pertain to the transfer service.
Description
Description
aws_transfer_web_app should support vpc configuration via the terraform provider. This is a fairly minor extension of the existing configuration since the API seems to already support support for setting this using the EndpointDetails parameter on the CreateWebApp endpoint struct.
This configuration is only configurable on creation of an endpoint and can not be updated.
Affected Resource(s) or Data Source(s)
- aws_transfer_web_app
Potential Terraform Configuration
resource "aws_transfer_web_app" "example" {
endpoint_details {
vpc {
security_group = sg-123456789
subnet_ids = [subnet-123456789, subnet-987654321]
vpc_id = vpc-abcdefg
}
}
}
References
No response
Would you like to implement the enhancement?
No
apgmckayhl and apgmckay
Metadata
Metadata
Assignees
Labels
enhancementRequests to existing resources that expand the functionality or scope.Requests to existing resources that expand the functionality or scope.needs-triageWaiting for first response or review from a maintainer.Waiting for first response or review from a maintainer.service/transferIssues and PRs that pertain to the transfer service.Issues and PRs that pertain to the transfer service.