Skip to content

Instantly share code, notes, and snippets.

@Jojoooo1
Created November 7, 2023 18:32
Show Gist options
  • Save Jojoooo1/7a1da094e97f9d34dc22e9ece32cd325 to your computer and use it in GitHub Desktop.
Save Jojoooo1/7a1da094e97f9d34dc22e9ece32cd325 to your computer and use it in GitHub Desktop.
static ip regional ingress nginx
module "static_ip_regional_ingress_nginx" {
source = "terraform-google-modules/address/google"
version = "3.1.3"
project_id = var.project_id
region = var.region
address_type = "EXTERNAL"
global = false
names = [
"${var.project_id}-k8s-ingress-nginx",
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment