forked from clouddrove/terraform-aws-lightsail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
27 lines (22 loc) · 745 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
#Module : Lightsail
#Description : Terraform Lightsail module variables.
output "arn" {
value = aws_lightsail_instance.instance.*.arn
description = " The ARN of the Lightsail instance."
}
output "id" {
value = aws_lightsail_instance.instance.*.id
description = "The ARN of the Lightsail instance."
}
output "created_at" {
value = aws_lightsail_instance.instance.*.created_at
description = "The timestamp when the instance was created."
}
output "ip_address" {
value = aws_lightsail_static_ip.instance.*.ip_address
description = "The Ip Address name of the Lightsail instance."
}
output "tags" {
value = module.labels.tags
description = "A mapping of tags to assign to the resource."
}