-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoutputs.tf
More file actions
18 lines (15 loc) · 655 Bytes
/
outputs.tf
File metadata and controls
18 lines (15 loc) · 655 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
##############################################################################
# Outputs
##############################################################################
output "secret_manager_guid" {
value = var.secrets_manager_guid
description = "GUI of Secrets-Manager containing secret"
}
output "serviceid_name" {
description = "Name of the ServiceID created to access Container Registry"
value = ibm_iam_service_id.image_secret_pull_service_id.name
}
output "serviceid_apikey_secret_id" {
description = "ID of the Secret Manager Secret containing ServiceID API Key"
value = module.dynamic_serviceid_apikey.secret_id
}