-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutputs.tf
More file actions
79 lines (64 loc) · 2.04 KB
/
Copy pathoutputs.tf
File metadata and controls
79 lines (64 loc) · 2.04 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
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 "cloud_provider" {
value = local.cloud_provider
description = "Root entrypoint cloud provider (gcp)."
}
output "template" {
value = local.template_name
description = "Selected compose template preset."
}
output "instance" {
value = module.gcp[0].instance
description = "GCP VM instance details."
}
output "instance_id" {
value = module.gcp[0].instance_id
description = "GCP VM instance ID."
}
output "external_ip" {
value = module.gcp[0].external_ip
description = "GCP VM public IPv4 address."
}
output "internal_ip" {
value = module.gcp[0].internal_ip
description = "GCP VM private IPv4 address."
}
output "network" {
value = module.gcp[0].network
description = "Resolved GCP network and regional subnetwork."
}
output "volumes" {
value = module.gcp[0].volumes
description = "GCP persistent application-data and Docker-volume details."
}
output "serviceGsa" {
value = module.gcp[0].serviceGsa
description = "The Google Service Account internal services run as."
}
output "appGsa" {
value = module.gcp[0].appGsa
description = "The Google Service Account the app can use for app-scoped auth."
}
output "urls" {
value = module.gcp[0].urls
description = "Cloud Run ingress URLs by region."
}
output "backend" {
value = module.gcp[0].backend
description = "Backend service ID for attaching Cloud Run ingress to an external HTTPS load balancer."
}
output "rollout" {
value = module.gcp[0].rollout
description = "Optional rollout API endpoint details."
}
output "compose_projects" {
value = module.gcp[0].compose_projects
description = "Normalized compose project manifest."
}
output "primary_compose_project" {
value = module.gcp[0].primary_compose_project
description = "Normalized primary compose project."
}
output "sitectl_package_versions" {
value = module.gcp[0].sitectl_package_versions
description = "Effective release selector for every installed sitectl package; values may be exact tags or latest."
}