FIX APIGEE PAYG ENVIRONMENT NODE CONFIG
Fixed the Node Configuration for Apigee PAYG specific Environments. Removed current_aggregate_node_count as it is a read-only field and cannot be taken as an input for the Apigee Environment Terraform resource. Changes committed: modified: blueprints/cloud-operations/apigee/README.md modified: blueprints/cloud-operations/apigee/variables.tf modified: modules/apigee/README.md modified: modules/apigee/main.tf modified: modules/apigee/variables.tf modified: tests/blueprints/cloud_operations/apigee/fixture/variables.tf modified: tests/modules/apigee/fixture/variables.tf
This commit is contained in:
@@ -35,9 +35,8 @@ variable "environments" {
|
||||
display_name = optional(string)
|
||||
description = optional(string, "Terraform-managed")
|
||||
node_config = optional(object({
|
||||
min_node_count = optional(number)
|
||||
max_node_count = optional(number)
|
||||
current_aggregate_node_count = number
|
||||
min_node_count = optional(number)
|
||||
max_node_count = optional(number)
|
||||
}))
|
||||
iam = optional(map(list(string)))
|
||||
envgroups = list(string)
|
||||
@@ -76,4 +75,4 @@ variable "organization" {
|
||||
variable "project_id" {
|
||||
description = "Project ID."
|
||||
type = string
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user