feat(oci): add

This commit is contained in:
Kat Inskip 2024-06-08 17:25:08 -07:00
parent 7f6562ea70
commit 1e79f4f23c
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
29 changed files with 308 additions and 34 deletions

View file

@ -0,0 +1,24 @@
resource "oci_identity_api_key" "this" {
key_value = local.child_compartment_public_key
user_id = local.child_compartment_user
}
locals {
child_compartment_api_key = oci_identity_api_key.this
}
output "child_compartment_key_fingerprint" {
value = local.child_compartment_api_key.fingerprint
}
output "child_compartment_key_id" {
value = local.child_compartment_api_key.id
}
output "child_compartment_key_value" {
value = local.child_compartment_api_key.key_value
}
output "child_compartment_key_state" {
value = local.child_compartment_api_key.state
}