Terraform-provider-aws: AWS DataSync supports VPC Endpoints

Created on 13 Aug 2019  路  2Comments  路  Source: hashicorp/terraform-provider-aws

Community Note

  • Please vote on this issue by adding a 馃憤 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment

Description

You can now deploy AWS DataSync within a VPC using VPC endpoints.

New or Affected Resource(s)

Potential Terraform Configuration

resource "aws_datasync_agent" "example" {
  security_group_arns = [
     "${aws_security_group.example.arn}",
  ]

  subnet_arns = [
    "${aws_subnet.example.arn}",
  ]

  vpc_endpoint_id = "${aws_vpc_endpoint.example.id}"
}

References

Announcement.
User guide.

enhancement servicdatasync

Most helpful comment

Is this going to be implemented in the near future?

All 2 comments

Is there any plan to implement this in the near future? We are unable to deploy datasync agents since we rely on vpc endpoints.

Is this going to be implemented in the near future?

Was this page helpful?
0 / 5 - 0 ratings