-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutputs.tf
More file actions
47 lines (38 loc) · 1.56 KB
/
Copy pathoutputs.tf
File metadata and controls
47 lines (38 loc) · 1.56 KB
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
# AWS outputs
output "aws_ghost_instance_ip" {
value = module.aws_ghost_instance.aws_ghost_instance_ip
description = "The public IP of the Ghost instance"
}
output "aws_ghost_instance_arn" {
value = module.aws_ghost_instance.aws_ghost_instance_arn
description = "The ARN of the Ghost instance"
}
output "aws_ghost_instance_id" {
value = module.aws_ghost_instance.aws_ghost_instance_id
description = "The ID of the Ghost instance"
}
output "aws_ghost_instance_root_volume_id" {
value = module.aws_ghost_instance.aws_ghost_instance_root_volume_id
description = "The ID of the Ghost instance root volume"
}
output "aws_ghost_instance_root_volume_device_name" {
value = module.aws_ghost_instance.aws_ghost_instance_root_volume_device_name
description = "The device name of the Ghost instance root volume"
}
output "aws_ghost_instance_security_group_arn" {
value = module.aws_ghost_instance.aws_ghost_instance_security_group_arn
description = "The ARN of the Ghost instance security group"
}
output "aws_ghost_instance_security_group_id" {
value = module.aws_ghost_instance.aws_ghost_instance_security_group_id
description = "The ID of the Ghost instance security group"
}
# Cloudflare outputs
output "cloudflare_root_a_record_metadata" {
value = module.cloudflare.cloudflare_root_a_record_metadata
description = "The metadata of the root A record"
}
output "cloudflare_www_a_record_metadata" {
value = module.cloudflare.cloudflare_www_a_record_metadata
description = "The metadata of the www A record"
}