mirror of
https://github.com/optim-enterprises-bv/terraform-talos.git
synced 2025-11-01 18:58:39 +00:00
16 lines
333 B
HCL
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"
|
|
}
|