-
Notifications
You must be signed in to change notification settings - Fork 0
/
io.tf
65 lines (50 loc) · 1.33 KB
/
io.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
variable "client_id" {
description = "The Client ID for the Service Principal to use for this Managed Kubernetes Cluster"
}
variable "client_secret" {
description = "The Client Secret for the Service Principal to use for this Managed Kubernetes Cluster"
}
variable "location" {
description = "The Azure Region in which all resources should be provisioned"
default = "westus2"
}
variable "prefix" {
description = "A prefix used for all resources"
}
variable "public_ssh_key_path" {
description = "The Path at which your Public SSH Key is located. Defaults to ~/.ssh/id_rsa.pub"
default = "~/.ssh/id_rsa.pub"
}
output "rg_name" {
value = "${module.aks.rg_name}"
}
output "network_plugin" {
value = "${module.aks.network_plugin}"
}
output "vnet_name" {
value = "${module.aks.vnet_name}"
}
output "subnet_id" {
value = "${module.aks.subnet_id}"
}
output "service_cidr" {
value = "${module.aks.service_cidr}"
}
output "dns_service_ip" {
value = "${module.aks.dns_service_ip}"
}
output "docker_bridge_cidr" {
value = "${module.aks.docker_bridge_cidr}"
}
output "cluster_username" {
value = "${module.aks.cluster_username}"
}
output "cluster_password" {
value = "${module.aks.cluster_password}"
}
output "kube_config" {
value = "${module.aks.kube_config}"
}
output "master_url" {
value = "${module.aks.host}"
}