diff --git a/docs/resources/kubectl_manifest.md b/docs/resources/kubectl_manifest.md index b406c41..cdd5f05 100644 --- a/docs/resources/kubectl_manifest.md +++ b/docs/resources/kubectl_manifest.md @@ -38,7 +38,7 @@ YAML ### With explicit `wait_for` -If `wait_for` is specified, upon applying the resource, provider will wait for **all** conditions to become true before proceeding further. +If `wait_for` is specified, upon applying the resource, provider will wait for **all** conditions to become true before proceeding further. ```hcl resource "kubectl_manifest" "test" { @@ -56,6 +56,14 @@ resource "kubectl_manifest" "test" { value = "^(\\d+(\\.|$)){4}" value_type = "regex" } + condition { + type = "ContainersReady" + status = "True" + } + condition { + type = "Ready" + status = "True" + } } yaml_body = <