@@ -64,7 +64,7 @@ resource "google_apigee_organization" "apigee_org" {
6464
6565resource "google_apigee_instance" "apigee_instance" {
6666 name = "tf-test%{random_suffix}"
67- location = "us-central1-b "
67+ location = "us-central1"
6868 org_id = google_apigee_organization.apigee_org.id
6969}
7070```
@@ -101,7 +101,7 @@ resource "google_apigee_organization" "apigee_org" {
101101
102102resource "google_apigee_instance" "apigee_instance" {
103103 name = "tf-test%{random_suffix}"
104- location = "us-central1-b "
104+ location = "us-central1"
105105 org_id = google_apigee_organization.apigee_org.id
106106 peering_cidr_range = "SLASH_22"
107107}
@@ -139,7 +139,7 @@ resource "google_apigee_organization" "apigee_org" {
139139
140140resource "google_apigee_instance" "apigee_instance" {
141141 name = "tf-test%{random_suffix}"
142- location = "us-central1-b "
142+ location = "us-central1"
143143 org_id = google_apigee_organization.apigee_org.id
144144 ip_range = "10.87.8.0/22"
145145}
@@ -213,8 +213,8 @@ resource "google_apigee_organization" "apigee_org" {
213213
214214resource "google_apigee_instance" "apigee_instance" {
215215 name = "tf-test%{random_suffix}"
216- location = "us-central1-b "
217- description = "Terraform-managed Apigee Runtime Instance"
216+ location = "us-central1"
217+ description = "Terraform-managed Apigee Runtime Instance"
218218 display_name = "tf-test%{random_suffix}"
219219 org_id = google_apigee_organization.apigee_org.id
220220 disk_encryption_key_name = google_kms_crypto_key.apigee_key.id
@@ -232,9 +232,7 @@ The following arguments are supported:
232232
233233* ` location ` -
234234 (Required)
235- Compute Engine location where the instance resides. For trial organization
236- subscriptions, the location must be a Compute Engine zone. For paid organization
237- subscriptions, it should correspond to a Compute Engine region.
235+ Required. Compute Engine location where the instance resides.
238236
239237* ` org_id ` -
240238 (Required)
0 commit comments