-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
44 lines (36 loc) · 1009 Bytes
/
outputs.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
output "parent_zone_id" {
value = "${module.domain.parent_zone_id}"
description = "Parent zone ID"
}
output "parent_zone_name" {
value = "${module.domain.parent_zone_name}"
description = "Parent zone name"
}
output "zone_id" {
value = "${module.domain.zone_id}"
description = "`kops` cluster zone ID"
}
output "zone_name" {
value = "${module.domain.zone_name}"
description = "`kops` cluster zone name"
}
output "bucket_name" {
value = "${aws_s3_bucket.default.bucket}"
description = "S3 bucket name"
}
output "bucket_region" {
value = "${aws_s3_bucket.default.region}"
description = "S3 bucket region"
}
output "bucket_domain_name" {
value = "${aws_s3_bucket.default.bucket_domain_name}"
description = "S3 bucket domain name"
}
output "bucket_id" {
value = "${aws_s3_bucket.default.id}"
description = "S3 bucket ID"
}
output "bucket_arn" {
value = "${aws_s3_bucket.default.arn}"
description = "S3 bucket ARN"
}