feat(oci): fix compartment provider configuration, expose TLS

This commit is contained in:
Kat Inskip 2024-06-08 18:13:43 -07:00
parent 89bb3f5383
commit 3711cf0255
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
2 changed files with 10 additions and 2 deletions

View file

@ -8,4 +8,12 @@ resource "tls_private_key" "this" {
locals {
child_compartment_private_key = tls_private_key.this.private_key_pem
child_compartment_public_key = tls_private_key.this.public_key_pem
}
}
output "child_compartment_private_key" {
value = local.child_compartment_private_key
}
output "child_compartment_public_key" {
value = local.child_compartment_public_key
}