Skip to content

Commit a8857be

Browse files
committed
Update vault.tf
1 parent e43f32f commit a8857be

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

deploy/devops/tf-env/vault.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ resource "oci_kms_vault" "vault_devops" {
44
vault_type = "DEFAULT" // VIRTUAL_PRIVATE, DEFAULT
55
}
66

7+
resource "time_sleep" "wait_for_vault" {
8+
depends_on = [oci_kms_vault.vault_devops]
9+
create_duration = "5m"
10+
}
11+
712
resource "oci_kms_key" "key_devops" {
813
compartment_id = var.compartment_ocid
914
display_name = "master_key_devops_${random_string.deploy_id.result}"

0 commit comments

Comments
 (0)