Skip to content

Commit

Permalink
offline is true by default
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Hoß <[email protected]>
  • Loading branch information
sebhoss committed Mar 30, 2024
1 parent d6fa2e0 commit 188ee3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/provider/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ func (p *K8sProvider) Schema(_ context.Context, _ provider.SchemaRequest, resp *
Sensitive: false,
},
"offline": schema.BoolAttribute{
Description: "Enable offline mode for this provider. In offline mode, no connection to a kubernetes cluster will be performed, therefore no resource or data source can be created except manifest data sources (those ending with _manifest). Can be specified with the 'TF_K8S_OFFLINE' environment variable. Defaults to 'false'.",
MarkdownDescription: "Enable offline mode for this provider. In offline mode, no connection to a kubernetes cluster will be performed, therefore no resource or data source can be created except manifest data sources (those ending with _manifest). Can be specified with the `TF_K8S_OFFLINE` environment variable. Defaults to `false`.",
Description: "Enable offline mode for this provider. In offline mode, no connection to a kubernetes cluster will be performed, therefore no resource or data source can be created except manifest data sources (those ending with _manifest). Can be specified with the 'TF_K8S_OFFLINE' environment variable. Defaults to 'true'.",
MarkdownDescription: "Enable offline mode for this provider. In offline mode, no connection to a kubernetes cluster will be performed, therefore no resource or data source can be created except manifest data sources (those ending with _manifest). Can be specified with the `TF_K8S_OFFLINE` environment variable. Defaults to `true`.",
Required: false,
Optional: true,
Sensitive: false,
Expand Down

0 comments on commit 188ee3e

Please sign in to comment.