forked from rancher/terraform-rancher-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutput.tf
48 lines (40 loc) · 1.29 KB
/
output.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
output "master_addresses" {
value = aws_instance.rancher_master.*.public_ip
description = "IP addresses of Rancher master nodes"
}
output "worker_addresses" {
value = aws_instance.rancher_worker.*.public_ip
description = "IP addresses of Rancher worker nodes"
}
output "rancher_admin_password" {
value = var.rancher_password
sensitive = true
description = "Password set for Rancher local admin user"
}
output "rancher_url" {
value = rancher2_bootstrap.admin.url
description = "URL at which to reach Rancher"
}
output "rancher_api_url" {
value = local.api_server_url
description = "FQDN of Rancher's Kubernetes API endpoint"
}
output "rancher_token" {
value = rancher2_bootstrap.admin.token
sensitive = true
description = "Admin token for Rancher cluster use"
}
output "etcd_backup_s3_bucket_id" {
value = aws_s3_bucket.etcd_backups.id
description = "S3 bucket ID for etcd backups"
}
output "etcd_backup_user_key" {
value = aws_iam_access_key.etcd_backup_user.id
sensitive = true
description = "AWS IAM access key id for etcd backup user"
}
output "etcd_backup_user_secret" {
value = aws_iam_access_key.etcd_backup_user.secret
sensitive = true
description = "AWS IAM secret access key for etcd backup user"
}