generated from scaleway-terraform-modules/module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
46 lines (37 loc) · 1.21 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
output "secret_id" {
value = scaleway_secret.this.id
description = "ID of the Secret"
}
output "secret_status" {
value = scaleway_secret.this.status
description = "Status of the Secret."
}
output "secret_version" {
value = scaleway_secret.this.version_count
description = "Number of versions for this Secret."
}
output "version_data" {
value = scaleway_secret_version.this.data
description = "Data payload (base64 encoded) of the Secret version."
sensitive = true
}
output "version_id" {
value = scaleway_secret_version.this.id
description = "ID of the Secret version."
}
output "version_revision" {
value = scaleway_secret_version.this.revision
description = "Revision for this Secret Version."
}
output "version_status" {
value = scaleway_secret_version.this.status
description = "Status of this Secret Version."
}
output "version_creation_date" {
value = scaleway_secret_version.this.created_at
description = "Date and time of Secret version's creation (RFC 3339 format)."
}
output "version_update_date" {
value = scaleway_secret_version.this.updated_at
description = "Date and time of Secret version's last update (RFC 3339 format)."
}