From 158df4c87341896f76798fd9356a6447493a2cf2 Mon Sep 17 00:00:00 2001 From: Daniel Strebel Date: Mon, 28 Nov 2022 09:55:51 +0100 Subject: [PATCH] fix(apigee): Apigee instance doc examples --- modules/apigee/README.md | 8 ++++---- tests/modules/apigee/fixture/test.all.tfvars | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/modules/apigee/README.md b/modules/apigee/README.md index 129a6357ed..eb2f9a34fe 100644 --- a/modules/apigee/README.md +++ b/modules/apigee/README.md @@ -1,6 +1,6 @@ # Apigee -This module simplifies the creation of a Apigee resources (organization, environment groups, environment group attachments, environments, instances and instance attachments). +This module simplifies the creation of a Apigee resources (organization, environment groups, environment group attachments, environments, instances and instance attachments). ## Example @@ -44,10 +44,10 @@ module "apigee" { environments = ["apis-test"] psa_ip_cidr_range = "10.0.4.0/22" } - instance-prod-ew1 = { - region = "europe-west1" + instance-prod-ew3 = { + region = "europe-west3" environments = ["apis-prod"] - psa_ip_cidr_range = "10.0.4.0/22" + psa_ip_cidr_range = "10.0.5.0/22" } } } diff --git a/tests/modules/apigee/fixture/test.all.tfvars b/tests/modules/apigee/fixture/test.all.tfvars index 633604f89b..b0e25b92a9 100644 --- a/tests/modules/apigee/fixture/test.all.tfvars +++ b/tests/modules/apigee/fixture/test.all.tfvars @@ -33,9 +33,9 @@ instances = { environments = ["apis-test"] psa_ip_cidr_range = "10.0.4.0/22" } - instance-prod-ew1 = { - region = "europe-west1" + instance-prod-ew3 = { + region = "europe-west3" environments = ["apis-prod"] - psa_ip_cidr_range = "10.0.4.0/22" + psa_ip_cidr_range = "10.0.5.0/22" } }