-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
54 lines (48 loc) · 1006 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
45
46
47
48
49
50
51
52
53
54
#output "bucket_id" {
# value = aws_s3_bucket.this.id
#}
#
#output "bucket_arn" {
# value = aws_s3_bucket.this.arn
#
#}
#
#output "bucket_domain_name" {
# value = aws_s3_bucket.this.bucket_domain_name
#}
#
#output "bucket_regional_domain_name" {
# value = aws_s3_bucket.this.bucket_regional_domain_name
# sensitive = true
#}
#######
#output "module_bucket_id" {
# value = module.s3.bucket_id
#}
#
#output "module_bucket_arn" {
# value = module.s3.bucket_arn
#
#}
#
#output "module_bucket_domain_name" {
# value = module.s3.bucket_domain_name
#}
#
#output "module_bucket_regional_domain_name" {
# value = module.s3.bucket_regional_domain_name
# sensitive = true
#}
#######
output "courses_table_name" {
value = module.table_courses.id
}
output "courses_table_arn" {
value = module.table_courses.arn
}
output "authors_table_name" {
value = module.table_authors.id
}
output "authors_table_arn" {
value = module.table_authors.arn
}