-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- **Move upstream to v5.70.0** - **./scripts/tidy-all.sh** - **./scripts/patch_computed_only.sh** - **Set up computed IDs** - **Regen schema** - **Regen SDK** The detected breaking change in `getStandardsControlAssociations` is expected and benign. The output `standardsControlAssociations` snuck its way into the inputs in upstream, but it wasn't usable. This PR fixed it upstream: hashicorp/terraform-provider-aws@f2a5704 Additionally this corrects the `ComputedID` of `aws_iam_role_policies_exclusive`. closes #4602
- Loading branch information
1 parent
baee26c
commit 77f656d
Showing
294 changed files
with
20,854 additions
and
3,400 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
patches/0068-Fix-tags_all-Computed-for-aws_backup_logically_air_g.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 | ||
From: Florian Stadler <[email protected]> | ||
Date: Fri, 4 Oct 2024 09:08:32 +0200 | ||
Subject: [PATCH] Fix tags_all Computed for | ||
aws_backup_logically_air_gapped_vault | ||
|
||
|
||
diff --git a/internal/service/backup/logically_air_gapped_vault.go b/internal/service/backup/logically_air_gapped_vault.go | ||
index 56ceaef5c9..3734264073 100644 | ||
--- a/internal/service/backup/logically_air_gapped_vault.go | ||
+++ b/internal/service/backup/logically_air_gapped_vault.go | ||
@@ -87,7 +87,7 @@ func (r *logicallyAirGappedVaultResource) Schema(ctx context.Context, request re | ||
}, | ||
}, | ||
names.AttrTags: tftags.TagsAttribute(), | ||
- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), | ||
+ names.AttrTagsAll: tftags.TagsAttribute(), | ||
}, | ||
Blocks: map[string]schema.Block{ | ||
names.AttrTimeouts: timeouts.Block(ctx, timeouts.Opts{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.