We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e43f32f commit a8857beCopy full SHA for a8857be
deploy/devops/tf-env/vault.tf
@@ -4,6 +4,11 @@ resource "oci_kms_vault" "vault_devops" {
4
vault_type = "DEFAULT" // VIRTUAL_PRIVATE, DEFAULT
5
}
6
7
+resource "time_sleep" "wait_for_vault" {
8
+ depends_on = [oci_kms_vault.vault_devops]
9
+ create_duration = "5m"
10
+}
11
+
12
resource "oci_kms_key" "key_devops" {
13
compartment_id = var.compartment_ocid
14
display_name = "master_key_devops_${random_string.deploy_id.result}"
0 commit comments