Apigee module variable description fixes

This commit is contained in:
Daniel Strebel 2021-08-05 15:53:44 +02:00
parent ed6ebc0c82
commit 109bd80f43
2 changed files with 4 additions and 4 deletions

View File

@ -15,13 +15,13 @@
*/ */
variable "authorized_network" { variable "authorized_network" {
description = "VPC network id (requires service network peering enabled (Used in Apigee X only)." description = "VPC network self link (requires service network peering enabled (Used in Apigee X only)."
type = string type = string
default = null default = null
} }
variable "analytics_region" { variable "analytics_region" {
description = "Analytics Region for the Apgiee Organization (immutable). See https://cloud.google.com/apigee/docs/api-platform/get-started/install-cli." description = "Analytics Region for the Apigee Organization (immutable). See https://cloud.google.com/apigee/docs/api-platform/get-started/install-cli."
type = string type = string
} }
@ -41,7 +41,7 @@ variable "apigee_environments" {
} }
variable "database_encryption_key" { variable "database_encryption_key" {
description = "Cloud KMS key name used for encrypting the data that is stored and replicated across runtime instances (immutable, used in Apigee X only)." description = "Cloud KMS key self link (e.g. `projects/foo/locations/us/keyRings/bar/cryptoKeys/baz`) used for encrypting the data that is stored and replicated across runtime instances (immutable, used in Apigee X only)."
type = string type = string
default = null default = null
} }

View File

@ -44,7 +44,7 @@ variable "cidr_mask" {
} }
variable "disk_encryption_key" { variable "disk_encryption_key" {
description = "Customer Managed Encryption Key (CMEK) used for disk and volume encryption (required for PAID Apigee Orgs only)." description = "Customer Managed Encryption Key (CMEK) self link (e.g. `projects/foo/locations/us/keyRings/bar/cryptoKeys/baz`) used for disk and volume encryption (required for PAID Apigee Orgs only)."
type = string type = string
default = null default = null
} }