Skip to content

Commit

Permalink
Update the wait time to 5m for scc mgt folder sha test (#12468)
Browse files Browse the repository at this point in the history
  • Loading branch information
vijaykanthm authored Dec 2, 2024
1 parent a59131e commit ae3b299
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -170,9 +170,9 @@ resource "google_folder" "folder" {
deletion_protection = false
}

resource "time_sleep" "wait_3_minute" {
resource "time_sleep" "wait_5_minute" {
depends_on = [google_folder.folder]
create_duration = "3m"
create_duration = "5m"
}

resource "google_scc_management_folder_security_health_analytics_custom_module" "example" {
Expand Down Expand Up @@ -209,7 +209,7 @@ resource "google_scc_management_folder_security_health_analytics_custom_module"
recommendation = "Updated steps to resolve violation"
}

depends_on = [time_sleep.wait_3_minute]
depends_on = [time_sleep.wait_5_minute]

}
`, context)
Expand Down

0 comments on commit ae3b299

Please sign in to comment.