agones.dev/agones@v1.53.0/install/terraform/modules/aks/variables.tf (about) 1 # Copyright 2019 Google LLC All Rights Reserved. 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 variable "client_id" { 16 } 17 18 variable "client_secret" { 19 } 20 21 variable "cluster_name" { 22 default = "test-cluster" 23 } 24 25 variable "disk_size" { 26 default = 30 27 } 28 29 # VMSS is used, so it is unpredictable how NICs will be given to VMs 30 # So let Azure to create NICs with Public IPs as gameservers require 31 # Azure Managment SDK can be used to obtain these IPs and map Agones GameServers internal IPs to public 32 variable "enable_node_public_ip" { 33 default = true 34 } 35 36 variable "kubernetes_version" { 37 default = "1.33" 38 } 39 40 variable "machine_type" { 41 default = "Standard_D2_v2" 42 } 43 44 variable "node_count" { 45 default = 4 46 } 47 48 variable "resource_group_location" { 49 default = "East US" 50 } 51 52 variable "resource_group_name" { 53 default = "agonesRG" 54 }