Skip to content

Instantly share code, notes, and snippets.

@abatilo
Created October 23, 2019 13:18
Show Gist options
  • Save abatilo/dff2afe47664a637ee75b5369583d890 to your computer and use it in GitHub Desktop.
Save abatilo/dff2afe47664a637ee75b5369583d890 to your computer and use it in GitHub Desktop.
Basic example of a vpc_endpoint in Terraform
resource "aws_vpc_endpoint" "s3" {
vpc_id = "${aws_vpc.main.id}"
service_name = "com.amazonaws.us-west-2.s3"
tags = {
Environment = "test"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment