Skip to content

Commit 942ed33

Browse files
committed
fix: remove custom_s3_table_bucket_arn from aws iceberg
1 parent f13db1a commit 942ed33

5 files changed

Lines changed: 12 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1717
- Import state verification to env acceptance tests [c28b390](https://github.com/Altinity/terraform-provider-altinitycloud/commit/c28b390).
1818

1919
### Fixed
20+
- Mark `env_secret` value attribute as sensitive [7821136](https://github.com/Altinity/terraform-provider-altinitycloud/commit/7821136).
21+
- Handle `K8S_DISCONNECTED` status in wait loop and delete checks [df3d8c9](https://github.com/Altinity/terraform-provider-altinitycloud/commit/df3d8c9).
22+
- Replace regex CIDR validation with `net.ParseCIDR` and /21 check [a9f7728](https://github.com/Altinity/terraform-provider-altinitycloud/commit/a9f7728).
23+
- Remove broken import support from `env_secret` and `env_certificate` [16d1134](https://github.com/Altinity/terraform-provider-altinitycloud/commit/16d1134).
24+
- Prevent `WaitForDeletion` from hanging when no MFA and no pendingDelete [742c245](https://github.com/Altinity/terraform-provider-altinitycloud/commit/742c245).
25+
- Remove PEM content from error messages in `crypto.Encrypt` [096069a](https://github.com/Altinity/terraform-provider-altinitycloud/commit/096069a).
26+
- Add immutable plan modifiers to `nat` and `cloud_connect` in AWS [163a776](https://github.com/Altinity/terraform-provider-altinitycloud/commit/163a776).
27+
- Add immutable plan modifier to K8S `distribution` attribute [bdea43f](https://github.com/Altinity/terraform-provider-altinitycloud/commit/bdea43f).
28+
- Call `toModel()` in K8S Update to sync full state from API [4e35941](https://github.com/Altinity/terraform-provider-altinitycloud/commit/4e35941).
29+
- Add `allow_delete_while_disconnected` to ImportState [290924e](https://github.com/Altinity/terraform-provider-altinitycloud/commit/290924e).
30+
- Add RFC 1918 private range validation to VPC CIDR [f13db1a](https://github.com/Altinity/terraform-provider-altinitycloud/commit/f13db1a).
2031
- Guard `ElementsAs` calls against unknown/null values in list/set fields [b7a6abf](https://github.com/Altinity/terraform-provider-altinitycloud/commit/b7a6abf).
2132
- Add missing reordering for GCP peering connections and Azure tags [5c210e6](https://github.com/Altinity/terraform-provider-altinitycloud/commit/5c210e6).
2233
- Correct expected type in Configure error messages [217a50b](https://github.com/Altinity/terraform-provider-altinitycloud/commit/217a50b).

docs/data-sources/env_aws.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,6 @@ Required:
147147
Optional:
148148

149149
- `anonymous_access_enabled` (Boolean) Whether anonymous access is enabled (default `false`).
150-
- `custom_s3_table_bucket_arn` (String) ARN of the S3 Tables bucket.
151150
- `maintenance` (Attributes) Maintenance configuration for the catalog. (see [below for nested schema](#nestedatt--iceberg--catalogs--maintenance))
152151
- `name` (String) Catalog name. Empty name represents the default catalog.
153152
- `watches` (Attributes List) Table watch configurations. (see [below for nested schema](#nestedatt--iceberg--catalogs--watches))

docs/resources/env_aws.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,6 @@ Required:
507507
Optional:
508508

509509
- `anonymous_access_enabled` (Boolean) Whether anonymous access is enabled (default `false`).
510-
- `custom_s3_table_bucket_arn` (String) ARN of the S3 Tables bucket.
511510
- `maintenance` (Attributes) Maintenance configuration for the catalog. (see [below for nested schema](#nestedatt--iceberg--catalogs--maintenance))
512511
- `name` (String) Catalog name. Empty name represents the default catalog.
513512
- `watches` (Attributes List) Table watch configurations. (see [below for nested schema](#nestedatt--iceberg--catalogs--watches))

docs/resources/env_secret.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ resource "altinitycloud_env_secret" "this" {
3333
### Required
3434

3535
- `pem` (String, Sensitive) The Altinity.Cloud PEM certificate required to encrypt the value.
36-
- `value` (String) The value to be encrypted.
36+
- `value` (String, Sensitive) The value to be encrypted.
3737

3838
### Read-Only
3939

internal/provider/env/aws/schema.go

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -434,13 +434,6 @@ func getIcebergAttribute(required, optional, computed bool) rschema.SingleNested
434434
),
435435
},
436436
},
437-
"custom_s3_table_bucket_arn": rschema.StringAttribute{
438-
Optional: true,
439-
MarkdownDescription: common.ICEBERG_CATALOG_CUSTOM_S3_TABLE_BUCKET_ARN_DESCRIPTION,
440-
Validators: []validator.String{
441-
modifiers.RequiredIfSiblingValue("type", "S3_TABLE"),
442-
},
443-
},
444437
"anonymous_access_enabled": rschema.BoolAttribute{
445438
Optional: true,
446439
Computed: true,

0 commit comments

Comments
 (0)