Skip to content

Commit c800c64

Browse files
committed
documentation update
1 parent 1d2c042 commit c800c64

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cloudfoundry/provider/resource_app.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ func (r *appResource) Schema(_ context.Context, _ resource.SchemaRequest, resp *
201201
},
202202
},
203203
"stopped": schema.BoolAttribute{
204-
MarkdownDescription: "Whether the application is started or stopped after creation.",
204+
MarkdownDescription: "Whether the application is started or stopped after creation. By default, this value is false, meaning the application will be started automatically after creation.",
205205
Optional: true,
206206
},
207207
"environment": schema.MapAttribute{

docs/resources/app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ resource "cloudfoundry_app" "http-bin-sidecar" {
162162
- `sidecars` (Attributes Set) The attribute specifies additional processes to run in the same container as your app (see [below for nested schema](#nestedatt--sidecars))
163163
- `source_code_hash` (String) Used to trigger updates. Must be set to a base64-encoded SHA256 hash of the path specified.
164164
- `stack` (String) The base operating system and file system that your application will execute in. Please refer to the [docs](https://v3-apidocs.cloudfoundry.org/version/3.155.0/index.html#stacks) for more information
165-
- `stopped` (Boolean) Whether the application is started or stopped after creation.
165+
- `stopped` (Boolean) Whether the application is started or stopped after creation. By default, this value is false, meaning the application will be started automatically after creation.
166166
- `strategy` (String) The deployment strategy to use when deploying the application. Valid values are 'none', 'rolling', and 'blue-green', defaults to 'none'.
167167
- `timeout` (Number) Time in seconds at which the health-check will report failure.
168168

0 commit comments

Comments
 (0)