-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoutputs.tf
23 lines (20 loc) · 990 Bytes
/
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
output "si_creation" {
depends_on = [null_resource.si_creation_response]
value = data.local_file.si_creation_response_file.content != "" ? jsondecode(base64decode(data.local_file.si_creation_response_file.content)) : base64decode(data.local_file.si_creation_response_file.content)
}
#
#output "si_deletion" {
# depends_on = [null_resource.si_deletion_response]
# value = data.local_file.si_deletion_response_file.content != "" ? jsondecode(base64decode(data.local_file.si_deletion_response_file.content)) : base64decode(data.local_file.si_deletion_response_file.content)
#}
output "ag_user_domain" {
depends_on = [data.oci_identity_domains.ag_user_domain_data]
value = data.oci_identity_domains.ag_user_domain_data[*].domains[0]
}
output "admin_domain" {
depends_on = [data.oci_identity_domains.admin_domain_data]
value = data.oci_identity_domains.admin_domain_data.domains[0]
}
output "oci_identity_group" {
value = oci_identity_group.agcs_group[*]
}