-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
54 lines (44 loc) · 1.65 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
output "project_id" {
value = local.project_id
description = "string ||| The Google Cloud project ID for this workspace."
}
output "artifacts_bucket_name" {
value = google_storage_bucket.this.name
description = "string ||| The name of the created S3 bucket."
}
output "artifacts_key_template" {
value = local.artifacts_key_template
description = "string ||| Template for s3 directory where files are placed."
}
output "deployer" {
value = {
email = try(google_service_account.deployer.email, "")
private_key = try(google_service_account_key.deployer.private_key, "")
}
description = "object({ email: string, private_key: string }) ||| A GCP service account with explicit privilege to deploy this GCS static site."
sensitive = true
}
output "env_vars_filename" {
value = var.env_vars_filename
description = "string ||| The name of the S3 Object that contains a json-encoded configuration file with environment variables."
}
output "cdn_url_map_names" {
value = local.cdn_url_map_names
description = "string ||| A list of names for each URL map attached to a CDN."
}
output "private_urls" {
value = local.private_urls
description = "list(string) ||| A list of URLs only accessible inside the network"
}
output "public_urls" {
value = local.public_urls
description = "list(string) ||| A list of URLs accessible to the public"
}
output "log_provider" {
value = "cloud-logging"
description = "string ||| "
}
output "log_filter" {
value = local.log_filter
description = "string ||| A log filter that can be used by a GCP client to retrieve log entries for this static site"
}