-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
73 lines (60 loc) · 2.27 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
output "project_id" {
value = var.external_project == null ? digitalocean_project.site_project[0].id : null
description = "ID of the project."
depends_on = [digitalocean_project.site_project]
}
output "project_owner_uuid" {
value = var.external_project == null ? digitalocean_project.site_project[0].owner_uuid : null
description = "UUID of the project owner."
depends_on = [digitalocean_project.site_project]
}
output "project_owner_id" {
value = var.external_project == null ? digitalocean_project.site_project[0].owner_id : null
description = "ID of the project owner."
depends_on = [digitalocean_project.site_project]
}
output "project_creation" {
value = var.external_project == null ? digitalocean_project.site_project[0].created_at : null
description = "Timestamp of project creation"
depends_on = [digitalocean_project.site_project]
}
output "project_updated" {
value = var.external_project == null ? digitalocean_project.site_project[0].updated_at : null
description = "Timestamp of last project modification."
depends_on = [digitalocean_project.site_project]
}
output "site_id" {
value = digitalocean_app.site_app.id
description = "ID of the site."
depends_on = [digitalocean_app.site_app]
}
output "default_ingress" {
value = digitalocean_app.site_app.default_ingress
description = "Default ingress URL for the site."
depends_on = [digitalocean_app.site_app]
}
output "live_url" {
value = digitalocean_app.site_app.live_url
description = "Live URL for the site."
depends_on = [digitalocean_app.site_app]
}
output "active_deployment_id" {
value = digitalocean_app.site_app.active_deployment_id
description = "ID of the currently active site deployment."
depends_on = [digitalocean_app.site_app]
}
output "urn" {
value = digitalocean_app.site_app.urn
description = "URN of the site app."
depends_on = [digitalocean_app.site_app]
}
output "app_updated" {
value = digitalocean_app.site_app.updated_at
description = "Timestamp of last update to site app."
depends_on = [digitalocean_app.site_app]
}
output "app_created" {
value = digitalocean_app.site_app.created_at
description = "Timestamp of app creation"
depends_on = [digitalocean_app.site_app]
}