Skip to content

Commit

Permalink
chore: add punctation
Browse files Browse the repository at this point in the history
  • Loading branch information
ikadix committed Nov 9, 2023
1 parent 9514fee commit 4343e2b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ provider "katapult" {

### Optional

- `api_key` (String, Sensitive) **REQUIRED** via config or environment variableAPI Key for Katapult Core API. Can be specified with the `KATAPULT_API_KEY` environment variable.
- `data_center` (String) **REQUIRED** via config or environment variableData center permalink. Can be specified with the `KATAPULT_DATA_CENTER` environment variable.
- `api_key` (String, Sensitive) **REQUIRED** via config or environment variable. API Key for Katapult Core API. Can be specified with the `KATAPULT_API_KEY` environment variable.
- `data_center` (String) **REQUIRED** via config or environment variable. Data center permalink. Can be specified with the `KATAPULT_DATA_CENTER` environment variable.
- `log_level` (String) Log level used by Katapult Terraform provider. Can be specified with the `KATAPULT_LOG_LEVEL` environment variable. Defaults to `info`.
- `organization` (String) **REQUIRED** via config or environment variableOrganization sub-domain. Can be specified with the `KATAPULT_ORGANIZATION` environment variable.
- `organization` (String) **REQUIRED** via config or environment variable. Organization sub-domain. Can be specified with the `KATAPULT_ORGANIZATION` environment variable.
- `skip_trash_object_purge` (Boolean) Skip purging deleted resources from Katapult's trash when they are destroyed by Terraform. Only relevant to some resources which are moved to the trash when they are deleted. Can be specified with the
`KATAPULT_SKIP_TRASH_OBJECT_PURGE` environment variable. Defaults to `false`.

Expand Down
6 changes: 3 additions & 3 deletions internal/provider/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func New(c *Config) func() *schema.Provider { //nolint:funlen
Optional: true,
Sensitive: true,
Description: "**REQUIRED** via config or " +
"environment variable" +
"environment variable. " +
"API Key for Katapult Core API. Can be " +
"specified with the `KATAPULT_API_KEY` environment " +
"variable.",
Expand All @@ -69,7 +69,7 @@ func New(c *Config) func() *schema.Provider { //nolint:funlen
Optional: true,

Description: "**REQUIRED** via config or " +
"environment variable" +
"environment variable. " +
"Organization sub-domain. Can be " +
"specified with the `KATAPULT_ORGANIZATION` " +
"environment variable.",
Expand All @@ -79,7 +79,7 @@ func New(c *Config) func() *schema.Provider { //nolint:funlen
Optional: true,

Description: "**REQUIRED** via config or " +
"environment variable" +
"environment variable. " +
"Data center permalink. Can be " +
"specified with the `KATAPULT_DATA_CENTER` " +
"environment variable.",
Expand Down
6 changes: 3 additions & 3 deletions internal/v6provider/v6provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,23 +73,23 @@ func (k *KatapultProvider) Schema(
Optional: true,
Sensitive: true,
MarkdownDescription: "**REQUIRED** via config or " +
"environment variable" +
"environment variable. " +
"API Key for Katapult Core API. Can be " +
"specified with the `KATAPULT_API_KEY` environment " +
"variable.",
},
"organization": schema.StringAttribute{
Optional: true,
MarkdownDescription: "**REQUIRED** via config or " +
"environment variable" +
"environment variable. " +
"Organization sub-domain. Can be " +
"specified with the `KATAPULT_ORGANIZATION` " +
"environment variable.",
},
"data_center": schema.StringAttribute{
Optional: true,
MarkdownDescription: "**REQUIRED** via config or " +
"environment variable" +
"environment variable. " +
"Data center permalink. Can be " +
"specified with the `KATAPULT_DATA_CENTER` " +
"environment variable.",
Expand Down

0 comments on commit 4343e2b

Please sign in to comment.