Files
terraform-talos/oracle/init/output.tf
Serge Logvinov 32b2563794 Prepare account
2021-12-19 01:11:29 +02:00

16 lines
333 B
HCL

output "compartment_ocid" {
description = "compartment id"
value = oci_identity_compartment.project.compartment_id
}
output "user_ocid" {
description = "user id"
value = oci_identity_user.terraform.id
}
output "key_file" {
description = "key_file"
value = "~/.oci/oci_${var.project}_terraform.pem"
}