github.com/verrazzano/verrazzano@v1.7.1/tests/e2e/config/scripts/terraform/cluster/variables.tf (about) 1 # Copyright (c) 2020, 2022, Oracle and/or its affiliates. 2 # Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. 3 4 variable "compartment_id" {} 5 6 variable "cluster_name" { 7 default = "oke" 8 } 9 variable "label_prefix" { 10 default = "" 11 } 12 variable "username" { 13 default = "" 14 } 15 variable "tenancy_name" { 16 default = "stevengreenberginc" 17 } 18 19 variable "operating_system_version" { 20 default = "8" 21 } 22 23 variable "kubernetes_version" { 24 default = "v1.24.1" 25 } 26 variable "allow_worker_ssh_access" { 27 default = false 28 } 29 variable "worker_mode" { 30 default = "private" 31 } 32 variable "cluster_access" { 33 default = "public" 34 } 35 variable "ssh_public_key_path" { 36 default = "" 37 } 38 variable "ssh_private_key_path" { 39 default = "" 40 } 41 variable "node_pools" { 42 default = {"np1" = {shape="VM.Standard2.4",node_pool_size=4,boot_volume_size=50}} 43 } 44 variable "allow_node_port_access" { 45 default = false 46 } 47 variable "bastion_enabled" { 48 default = false 49 } 50 variable "operator_enabled" { 51 default = false 52 } 53 variable "node_pool_image_id" {} 54 variable "calico_enabled" {} 55 variable "calico_version" {}