Skip to content
This repository has been archived by the owner on May 25, 2022. It is now read-only.

Commit

Permalink
Update default wait_until value to "PROVISIONED" (#76)
Browse files Browse the repository at this point in the history
* Update default wait_until value to "PROVISIONED"

* Update sample responses.
  • Loading branch information
linouk23 committed Oct 13, 2021
1 parent db125de commit 5ee7dc7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/provider/provider.go
Expand Up @@ -96,7 +96,7 @@ func New(version string) func() *schema.Provider {
paramWaitUntil: {
Type: schema.TypeString,
Optional: true,
Default: waitUntilBootstrapAvailable,
Default: waitUntilProvisioned,
Description: "Terraform apply will wait until the specified field that is populated.",
ValidateDiagFunc: func(i interface{}, path cty.Path) diag.Diagnostics {
waitUntil := i.(string)
Expand Down
2 changes: 1 addition & 1 deletion internal/testdata/kafka/read_created_kafka.json
Expand Up @@ -27,6 +27,6 @@
"region": "us-central1"
},
"status": {
"phase": "PROVISIONING"
"phase": "PROVISIONED"
}
}

0 comments on commit 5ee7dc7

Please sign in to comment.