Last active
July 23, 2020 22:16
-
-
Save arashkaffamanesh/bb984c443f357e615571c18370105cf9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
variable "client_id" {} | |
variable "client_secret" {} | |
variable "agent_count" { | |
default = 1 | |
} | |
variable "ssh_public_key" { | |
default = "~/.ssh/id_rsa.pub" | |
} | |
variable "dns_prefix" { | |
default = "tf-aksjco" | |
} | |
variable cluster_name { | |
default = "tf-aksjco" | |
} | |
variable resource_group_name { | |
default = "tf-aksjco-rg" | |
} | |
variable location { | |
default = "westeurope" | |
} | |
variable network_plugin { | |
default = "kubenet" | |
} | |
variable kubernetes_version { | |
default = "1.17.x" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment