Updates during testing of TF 1.0.1

This commit is contained in:
sid palas
2021-06-27 13:41:03 -07:00
parent 4afa2070b3
commit f21f709b51
8 changed files with 29 additions and 64 deletions

View File

@@ -0,0 +1,6 @@
How to run this test?
Build, then run...
`go test -v timeout 10m`

View File

@@ -23,7 +23,7 @@ func TestTerraformHelloWorldExample(t *testing.T) {
instanceURL := terraform.Output(t, terraformOptions, "url")
tlsConfig := tls.Config{}
maxRetries := 30
timeBetweenRetries := 5 * time.Second
timeBetweenRetries := 10 * time.Second
http_helper.HttpGetWithRetryWithCustomValidation(
t, instanceURL, &tlsConfig, maxRetries, timeBetweenRetries, validate,