generated from clouddrove/terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoutputs.tf
48 lines (48 loc) · 2.06 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
# ------------------------------------------------------------------------------
# Outputs
# ------------------------------------------------------------------------------
output "id" {
value = join("", digitalocean_container_registry.main[*].id)
description = "The id of the container registry."
}
output "name" {
value = join("", digitalocean_container_registry.main[*].name)
description = "The name of the container registry."
}
output "subscription_tier_slug" {
value = join("", digitalocean_container_registry.main[*].subscription_tier_slug)
description = "The slug identifier for the subscription tier."
}
output "region" {
value = join("", digitalocean_container_registry.main[*].region)
description = "The slug identifier for the region."
}
output "endpoint" {
value = join("", digitalocean_container_registry.main[*].endpoint)
description = "The URL endpoint of the container registry."
}
output "server_url" {
value = join("", digitalocean_container_registry.main[*].server_url)
description = "The domain of the container registry."
}
output "storage_usage_bytes" {
value = join("", digitalocean_container_registry.main[*].storage_usage_bytes)
description = "The amount of storage used in the registry in bytes."
}
output "created_at" {
value = join("", digitalocean_container_registry.main[*].created_at)
description = "The date and time when the registry was created."
}
output "docker_credentials" {
value = join("", digitalocean_container_registry_docker_credentials.main[*].docker_credentials)
description = " Credentials for the container registry."
sensitive = true
}
output "expiry_seconds" {
value = join("", digitalocean_container_registry_docker_credentials.main[*].expiry_seconds)
description = "Number of seconds after creation for token to expire."
}
output "credential_expiration_time" {
value = join("", digitalocean_container_registry_docker_credentials.main[*].credential_expiration_time)
description = "The date and time the registry access token will expire."
}