Skip to content

Instantly share code, notes, and snippets.

@Simonx123
Forked from Callonski/vpc_connector.tf
Created September 7, 2020 00:58
Show Gist options
  • Save Simonx123/dbb9bfac464da73913dcb0e9284649a6 to your computer and use it in GitHub Desktop.
Save Simonx123/dbb9bfac464da73913dcb0e9284649a6 to your computer and use it in GitHub Desktop.
resource "google_vpc_access_connector" "elastic-connector" {
name = "vpc-elastic-connector"
provider = "google-beta"
region = var.region
ip_cidr_range = "10.8.0.0/28"
network = "${var.project_name}-elastic-vpc"
min_throughput = "200"
max_throughput = "800"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment