-
-
Notifications
You must be signed in to change notification settings - Fork 61
/
outputs.tf
79 lines (64 loc) · 1.92 KB
/
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
output "public_subnet_cidrs" {
value = module.subnets.public_subnet_cidrs
description = "Public subnet CIDRs"
}
output "private_subnet_cidrs" {
value = module.subnets.private_subnet_cidrs
description = "Private subnet CIDRs"
}
output "vpc_cidr" {
value = module.vpc.vpc_cidr_block
description = "VPC CIDR"
}
output "efs_arn" {
value = module.efs.arn
description = "EFS ARN"
}
output "efs_id" {
value = module.efs.id
description = "EFS ID"
}
output "efs_host" {
value = module.efs.host
description = "Route53 DNS hostname for the EFS"
}
output "efs_dns_name" {
value = module.efs.dns_name
description = "EFS DNS name"
}
output "efs_mount_target_dns_names" {
value = module.efs.mount_target_dns_names
description = "List of EFS mount target DNS names"
}
output "efs_mount_target_ids" {
value = module.efs.mount_target_ids
description = "List of EFS mount target IDs (one per Availability Zone)"
}
output "efs_mount_target_ips" {
value = module.efs.mount_target_ips
description = "List of EFS mount target IPs (one per Availability Zone)"
}
output "efs_network_interface_ids" {
value = module.efs.network_interface_ids
description = "List of mount target network interface IDs"
}
output "backup_vault_id" {
value = module.backup.backup_vault_id
description = "Backup Vault ID"
}
output "backup_vault_arn" {
value = module.backup.backup_vault_arn
description = "Backup Vault ARN"
}
output "backup_plan_arn" {
value = module.backup.backup_plan_arn
description = "Backup Plan ARN"
}
output "backup_plan_version" {
value = module.backup.backup_plan_version
description = "Unique, randomly generated, Unicode, UTF-8 encoded string that serves as the version ID of the backup plan"
}
output "backup_selection_id" {
value = module.backup.backup_selection_id
description = "Backup Selection ID"
}