mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
11 lines
No EOL
387 B
HCL
11 lines
No EOL
387 B
HCL
resource "tls_private_key" "this" {
|
|
# https://registry.terraform.io/providers/oracle/oci/latest/docs/resources/identity_api_key#key_value
|
|
# "The public key. Must be an RSA key in PEM format."
|
|
algorithm = "RSA"
|
|
rsa_bits = 4096
|
|
}
|
|
|
|
locals {
|
|
child_compartment_private_key = tls_private_key.this.private_key_pem
|
|
child_compartment_public_key = tls_private_key.this.public_key_pem
|
|
} |