Skip to content

Commit 8dafdc4

Browse files
updates on golgendate solution
1 parent 1fe4d4a commit 8dafdc4

File tree

4 files changed

+10
-10
lines changed
  • cloud-foundation/solutions

4 files changed

+10
-10
lines changed

cloud-foundation/solutions/GoldenGate-Stream-Analytics-for-production-workloads-Full-Solution/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ module "compute" {
7878
}
7979
}
8080

81-
resource "time_sleep" "wait_3_mins_for_the_instances_to_be_up_and_running" {
81+
resource "time_sleep" "wait_7_mins_for_the_instances_to_be_up_and_running" {
8282
depends_on = [module.compute]
83-
create_duration = "3m"
83+
create_duration = "7m"
8484
}
8585

8686
#Calling the network modules that are required for this solution

cloud-foundation/solutions/GoldenGate-Stream-Analytics-for-production-workloads-Full-Solution/provisioner.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ locals {
1616
# Workers provisioner
1717

1818
resource "null_resource" "Worker1-init-kafka-zk" {
19-
depends_on = [module.compute, module.fss, module.keygen, time_sleep.wait_3_mins_for_the_instances_to_be_up_and_running]
19+
depends_on = [module.compute, module.fss, module.keygen, time_sleep.wait_7_mins_for_the_instances_to_be_up_and_running]
2020
provisioner "remote-exec" {
2121
connection {
2222
type = "ssh"
@@ -39,7 +39,7 @@ resource "null_resource" "Worker1-init-kafka-zk" {
3939
}
4040

4141
resource "null_resource" "Worker2-init-kafka-zk" {
42-
depends_on = [module.compute, module.fss, module.keygen, time_sleep.wait_3_mins_for_the_instances_to_be_up_and_running]
42+
depends_on = [module.compute, module.fss, module.keygen, time_sleep.wait_7_mins_for_the_instances_to_be_up_and_running]
4343
provisioner "remote-exec" {
4444
connection {
4545
type = "ssh"
@@ -62,7 +62,7 @@ resource "null_resource" "Worker2-init-kafka-zk" {
6262
}
6363

6464
resource "null_resource" "Worker3-init-kafka-zk" {
65-
depends_on = [module.compute, module.fss, module.keygen, time_sleep.wait_3_mins_for_the_instances_to_be_up_and_running]
65+
depends_on = [module.compute, module.fss, module.keygen, time_sleep.wait_7_mins_for_the_instances_to_be_up_and_running]
6666
provisioner "remote-exec" {
6767
connection {
6868
type = "ssh"

cloud-foundation/solutions/GoldenGate-Stream-Analytics-for-production-workloads-Small-Footprint-Solution/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ module "compute" {
3737
}
3838
}
3939

40-
resource "time_sleep" "wait_3_mins_for_the_instances_to_be_up_and_running" {
40+
resource "time_sleep" "wait_7_mins_for_the_instances_to_be_up_and_running" {
4141
depends_on = [module.compute]
42-
create_duration = "3m"
42+
create_duration = "7m"
4343
}
4444

4545
#Calling the network modules that are required for this solution

cloud-foundation/solutions/GoldenGate-Stream-Analytics-for-production-workloads-Small-Footprint-Solution/provisioner.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ locals {
1616
# Workers provisioner
1717

1818
resource "null_resource" "Worker1-init-kafka-zk" {
19-
depends_on = [module.compute, module.fss, module.keygen, time_sleep.wait_3_mins_for_the_instances_to_be_up_and_running]
19+
depends_on = [module.compute, module.fss, module.keygen, time_sleep.wait_7_mins_for_the_instances_to_be_up_and_running]
2020
provisioner "remote-exec" {
2121
connection {
2222
type = "ssh"
@@ -39,7 +39,7 @@ resource "null_resource" "Worker1-init-kafka-zk" {
3939
}
4040

4141
resource "null_resource" "Worker2-init-kafka-zk" {
42-
depends_on = [module.compute, module.fss, module.keygen, time_sleep.wait_3_mins_for_the_instances_to_be_up_and_running]
42+
depends_on = [module.compute, module.fss, module.keygen, time_sleep.wait_7_mins_for_the_instances_to_be_up_and_running]
4343
provisioner "remote-exec" {
4444
connection {
4545
type = "ssh"
@@ -62,7 +62,7 @@ resource "null_resource" "Worker2-init-kafka-zk" {
6262
}
6363

6464
resource "null_resource" "Worker3-init-kafka-zk" {
65-
depends_on = [module.compute, module.fss, module.keygen, time_sleep.wait_3_mins_for_the_instances_to_be_up_and_running]
65+
depends_on = [module.compute, module.fss, module.keygen, time_sleep.wait_7_mins_for_the_instances_to_be_up_and_running]
6666
provisioner "remote-exec" {
6767
connection {
6868
type = "ssh"

0 commit comments

Comments
 (0)