* exposing the network_id from the net-vpc module for use with tag bindings * convert vpc_create to vpc_reuse * Changed the reuse vars to standardised attributes * fixed readme tests and schemas * modified apigee blueprint to use vpc_reuse with network_id passthrough --------- Co-authored-by: Ludovico Magnocavallo <ludomagno@google.com>
110 lines
3.1 KiB
HCL
110 lines
3.1 KiB
HCL
/**
|
|
* Copyright 2023 Google LLC
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
variable "cluster_network_config" {
|
|
description = "Cluster network configuration."
|
|
type = object({
|
|
nodes_cidr_block = string
|
|
pods_cidr_block = string
|
|
services_cidr_block = string
|
|
master_authorized_cidr_blocks = map(string)
|
|
master_cidr_block = string
|
|
})
|
|
default = {
|
|
nodes_cidr_block = "10.0.1.0/24"
|
|
pods_cidr_block = "172.16.0.0/20"
|
|
services_cidr_block = "192.168.0.0/24"
|
|
master_authorized_cidr_blocks = {
|
|
internal = "10.0.0.0/8"
|
|
}
|
|
master_cidr_block = "10.0.0.0/28"
|
|
}
|
|
}
|
|
|
|
variable "deletion_protection" {
|
|
description = "Prevent Terraform from destroying data storage resources (storage buckets, GKE clusters, CloudSQL instances) in this blueprint. When this field is set in Terraform state, a terraform destroy or terraform apply that would delete data storage resources will fail."
|
|
type = bool
|
|
default = false
|
|
nullable = false
|
|
}
|
|
|
|
variable "mgmt_server_config" {
|
|
description = "Management server configuration."
|
|
type = object({
|
|
disk_size = number
|
|
disk_type = string
|
|
image = string
|
|
instance_type = string
|
|
})
|
|
default = {
|
|
disk_size = 50
|
|
disk_type = "pd-ssd"
|
|
image = "projects/ubuntu-os-cloud/global/images/family/ubuntu-2204-lts"
|
|
instance_type = "n1-standard-2"
|
|
}
|
|
}
|
|
|
|
variable "mgmt_subnet_cidr_block" {
|
|
description = "Management subnet IP CIDR range."
|
|
type = string
|
|
default = "10.0.2.0/24"
|
|
}
|
|
|
|
variable "project_create" {
|
|
description = "Parameters for the creation of the new project."
|
|
type = object({
|
|
billing_account_id = string
|
|
parent = string
|
|
})
|
|
default = null
|
|
}
|
|
|
|
variable "project_id" {
|
|
description = "Project ID."
|
|
type = string
|
|
}
|
|
|
|
variable "region" {
|
|
description = "Region."
|
|
type = string
|
|
default = "europe-west1"
|
|
}
|
|
|
|
variable "vpc_name" {
|
|
description = "VPC name."
|
|
type = string
|
|
nullable = false
|
|
default = "vpc"
|
|
}
|
|
|
|
variable "vpc_reuse" {
|
|
description = "Reuse existing VPC if not null. If the network_id number is not passed in, a data source is used."
|
|
type = object({
|
|
use_data_source = optional(bool, true)
|
|
attributes = optional(object({
|
|
network_id = number
|
|
}))
|
|
})
|
|
default = null
|
|
validation {
|
|
condition = (
|
|
try(var.vpc_reuse.use_data_source, null) != false ||
|
|
try(var.vpc_reuse.attributes, null) != null
|
|
)
|
|
error_message = "Reuse datasource can be disabled only if attributes are set."
|
|
}
|
|
}
|