Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CDPCP-11560 - Datalake image id parameter is incorrectly shown as required cdp_datalake_*_datalake TF resources #163

Merged
merged 1 commit into from
Sep 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions docs/resources/datalake_aws_datalake.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,13 +107,10 @@ output "recipes" {
<a id="nestedatt--image"></a>
### Nested Schema for `image`

Required:

- `id` (String)

Optional:

- `catalog_name` (String)
- `id` (String)
- `os` (String)


Expand Down
5 changes: 1 addition & 4 deletions docs/resources/datalake_azure_datalake.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,13 +96,10 @@ output "recipes" {
<a id="nestedatt--image"></a>
### Nested Schema for `image`

Required:

- `id` (String)

Optional:

- `catalog_name` (String)
- `id` (String)
- `os` (String)


Expand Down
5 changes: 1 addition & 4 deletions docs/resources/datalake_gcp_datalake.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,10 @@ Required:
<a id="nestedatt--image"></a>
### Nested Schema for `image`

Required:

- `id` (String)

Optional:

- `catalog_name` (String)
- `id` (String)
- `os` (String)


Expand Down
2 changes: 1 addition & 1 deletion resources/datalake/common_schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ var generalAttributes = map[string]schema.Attribute{
Optional: true,
},
"id": schema.StringAttribute{
Required: true,
Optional: true,
},
"os": schema.StringAttribute{
Optional: true,
Expand Down
2 changes: 1 addition & 1 deletion resources/datalake/schema_aws_datalake.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ var awsDatalakeResourceSchema = schema.Schema{
Optional: true,
},
"id": schema.StringAttribute{
Required: true,
Optional: true,
},
"os": schema.StringAttribute{
Optional: true,
Expand Down
2 changes: 1 addition & 1 deletion resources/datalake/schema_azure_datalake.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ var azureDatalakeResourceSchema = schema.Schema{
Optional: true,
},
"id": schema.StringAttribute{
Required: true,
Optional: true,
},
"os": schema.StringAttribute{
Optional: true,
Expand Down
Loading