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 dd125c7 commit 61a928bCopy full SHA for 61a928b
terraform/install.tf
@@ -38,6 +38,10 @@ resource "null_resource" "common_playbook" {
38
null_resource.mount_data_volume
39
]
40
41
+ triggers = {
42
+ volume_attachment_id = oci_core_volume_attachment.volume_attachment.id # Trigger on volume attachment changes
43
+ }
44
+
45
provisioner "local-exec" {
46
command = "bash ${path.root}/../ansible/playbooks/common/run.sh"
47
}
@@ -53,6 +57,10 @@ resource "null_resource" "devops_roles" {
53
57
null_resource.common_playbook,
54
58
55
59
60
61
62
63
56
64
65
command = "bash ${path.root}/../ansible/playbooks/for-devops/run.sh"
66
0 commit comments