Created
November 7, 2023 18:32
-
-
Save Jojoooo1/7a1da094e97f9d34dc22e9ece32cd325 to your computer and use it in GitHub Desktop.
static ip regional ingress nginx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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