From 97517fa7f34608b1c6f254b2987c36e3797bbde2 Mon Sep 17 00:00:00 2001 From: Dalton Hubble Date: Sun, 1 Jul 2018 22:48:41 -0700 Subject: [PATCH] Fix ingress addons docs to use ingress_static_ipv4 var --- docs/addons/ingress.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/addons/ingress.md b/docs/addons/ingress.md index e6c9e81e..ec8e4cf9 100644 --- a/docs/addons/ingress.md +++ b/docs/addons/ingress.md @@ -80,7 +80,7 @@ aap2.example.com -> 11.22.33.44 app3.example.com -> 11.22.33.44 ``` -Find the IPv4 address with `gcloud compute addresses list` or use the Typhoon module's output `ingress_static_ip`. For example, you might use Terraform to manage a Google Cloud DNS record: +Find the IPv4 address with `gcloud compute addresses list` or use the Typhoon module's output `ingress_static_ipv4`. For example, you might use Terraform to manage a Google Cloud DNS record: ```tf resource "google_dns_record_set" "some-application" { @@ -91,7 +91,7 @@ resource "google_dns_record_set" "some-application" { name = "app.example.com." type = "A" ttl = 300 - rrdatas = ["${module.google-cloud-yavin.ingress_static_ip}"] + rrdatas = ["${module.google-cloud-yavin.ingress_static_ipv4}"] } ```