terraform-oci-free/oci.compute.tf

6 lines
132 B
Terraform
Raw Normal View History

2024-05-24 16:18:39 +06:00
resource "tls_private_key" "ssh_key" {
count = var.compute_ssh_key == null ? 1 : 0
algorithm = var.created_ssh_key_algorithm
}