diff --git a/examples/examples_yaml_test.go b/examples/examples_yaml_test.go index a373de8ab5b..b6f5134cd06 100644 --- a/examples/examples_yaml_test.go +++ b/examples/examples_yaml_test.go @@ -210,7 +210,11 @@ func TestAccDefaultTags(t *testing.T) { if !ok { continue } - v.expected = v.defaultTags + allTags := v.defaultTags + for k, v := range v.tags { + allTags[k] = v + } + v.expected = allTags steps[i] = v } @@ -267,11 +271,9 @@ func testTags(t *testing.T, dir string, steps []tagsStep) { Dir: dir, ExtraRuntimeValidation: editDirs[0].ExtraRuntimeValidation, EditDirs: editDirs[1:], - // see https://github.com/pulumi/pulumi-aws/issues/4080 - ExpectRefreshChanges: true, - Config: map[string]string{"aws:region": getEnvRegion(t)}, - Quick: true, - DestroyOnCleanup: true, + Config: map[string]string{"aws:region": getEnvRegion(t)}, + Quick: true, + DestroyOnCleanup: true, }) } @@ -288,7 +290,7 @@ resources: options: provider: ${aws-provider} outputs: - actual: ${res.tags}` + actual: ${res.tagsAll}` var expandMap func(level int, v interface{}) string expandMap = func(level int, v interface{}) string { diff --git a/patches/0002-Add-S3-legacy-bucket-to-resources.patch b/patches/0001-Add-S3-legacy-bucket-to-resources.patch similarity index 100% rename from patches/0002-Add-S3-legacy-bucket-to-resources.patch rename to patches/0001-Add-S3-legacy-bucket-to-resources.patch diff --git a/patches/0001-Add-TagsSchemaTrulyComputed-definition.patch b/patches/0001-Add-TagsSchemaTrulyComputed-definition.patch deleted file mode 100644 index 9aa203f9c2f..00000000000 --- a/patches/0001-Add-TagsSchemaTrulyComputed-definition.patch +++ /dev/null @@ -1,22 +0,0 @@ -From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 -From: Daniel Bradley -Date: Fri, 4 Nov 2022 16:49:08 +0000 -Subject: [PATCH] Add TagsSchemaTrulyComputed definition - - -diff --git a/internal/tags/tags.go b/internal/tags/tags.go -index 12d3b9013e..bc9e14fc19 100644 ---- a/internal/tags/tags.go -+++ b/internal/tags/tags.go -@@ -33,3 +33,11 @@ func TagsSchemaForceNew() *schema.Schema { - Elem: &schema.Schema{Type: schema.TypeString}, - } - } -+ -+func TagsSchemaTrulyComputed() *schema.Schema { -+ return &schema.Schema{ -+ Type: schema.TypeMap, -+ Computed: true, -+ Elem: &schema.Schema{Type: schema.TypeString}, -+ } -+} diff --git a/patches/0003-Marks-SSE-Configuration-as-Computed-for-Legacy-S3-Bu.patch b/patches/0002-Marks-SSE-Configuration-as-Computed-for-Legacy-S3-Bu.patch similarity index 100% rename from patches/0003-Marks-SSE-Configuration-as-Computed-for-Legacy-S3-Bu.patch rename to patches/0002-Marks-SSE-Configuration-as-Computed-for-Legacy-S3-Bu.patch diff --git a/patches/0004-De-deprecate-bucket_object.patch b/patches/0003-De-deprecate-bucket_object.patch similarity index 100% rename from patches/0004-De-deprecate-bucket_object.patch rename to patches/0003-De-deprecate-bucket_object.patch diff --git a/patches/0005-Remove-lakeformation-catalog_resource-default.patch b/patches/0004-Remove-lakeformation-catalog_resource-default.patch similarity index 100% rename from patches/0005-Remove-lakeformation-catalog_resource-default.patch rename to patches/0004-Remove-lakeformation-catalog_resource-default.patch diff --git a/patches/0006-Workaround-SSM-Parameter-tier-bug.patch b/patches/0005-Workaround-SSM-Parameter-tier-bug.patch similarity index 100% rename from patches/0006-Workaround-SSM-Parameter-tier-bug.patch rename to patches/0005-Workaround-SSM-Parameter-tier-bug.patch diff --git a/patches/0007-Add-EKS-cluster-certificate_authorities-plural.patch b/patches/0006-Add-EKS-cluster-certificate_authorities-plural.patch similarity index 100% rename from patches/0007-Add-EKS-cluster-certificate_authorities-plural.patch rename to patches/0006-Add-EKS-cluster-certificate_authorities-plural.patch diff --git a/patches/0008-Workaround-Autoscaling-launch_configuration-associat.patch b/patches/0007-Workaround-Autoscaling-launch_configuration-associat.patch similarity index 100% rename from patches/0008-Workaround-Autoscaling-launch_configuration-associat.patch rename to patches/0007-Workaround-Autoscaling-launch_configuration-associat.patch diff --git a/patches/0009-Add-ECR-credentials_data_source.patch b/patches/0008-Add-ECR-credentials_data_source.patch similarity index 100% rename from patches/0009-Add-ECR-credentials_data_source.patch rename to patches/0008-Add-ECR-credentials_data_source.patch diff --git a/patches/0010-Add-custom-appautoscaling-examples.patch b/patches/0009-Add-custom-appautoscaling-examples.patch similarity index 100% rename from patches/0010-Add-custom-appautoscaling-examples.patch rename to patches/0009-Add-custom-appautoscaling-examples.patch diff --git a/patches/0011-Add-dedicated_host-docs.patch b/patches/0010-Add-dedicated_host-docs.patch similarity index 100% rename from patches/0011-Add-dedicated_host-docs.patch rename to patches/0010-Add-dedicated_host-docs.patch diff --git a/patches/0012-Revert-WAF-schema-changes.patch b/patches/0011-Revert-WAF-schema-changes.patch similarity index 100% rename from patches/0012-Revert-WAF-schema-changes.patch rename to patches/0011-Revert-WAF-schema-changes.patch diff --git a/patches/0013-Catch-cty-panic-in-new-resourceTopicSubscriptionCust.patch b/patches/0012-Catch-cty-panic-in-new-resourceTopicSubscriptionCust.patch similarity index 100% rename from patches/0013-Catch-cty-panic-in-new-resourceTopicSubscriptionCust.patch rename to patches/0012-Catch-cty-panic-in-new-resourceTopicSubscriptionCust.patch diff --git a/patches/0014-add-matchmaking-configuration-72.patch b/patches/0013-add-matchmaking-configuration-72.patch similarity index 99% rename from patches/0014-add-matchmaking-configuration-72.patch rename to patches/0013-add-matchmaking-configuration-72.patch index ea2d35d305d..62f237227bd 100644 --- a/patches/0014-add-matchmaking-configuration-72.patch +++ b/patches/0013-add-matchmaking-configuration-72.patch @@ -33,7 +33,7 @@ index 81babf4a9c..92763850ac 100644 diff --git a/internal/service/gamelift/matchmaking_configuration.go b/internal/service/gamelift/matchmaking_configuration.go new file mode 100644 -index 0000000000..0a7c8ea635 +index 0000000000..12bf0dd661 --- /dev/null +++ b/internal/service/gamelift/matchmaking_configuration.go @@ -0,0 +1,386 @@ @@ -179,7 +179,7 @@ index 0000000000..0a7c8ea635 + ), + }, + "tags": tftags.TagsSchema(), -+ "tags_all": tftags.TagsSchemaTrulyComputed(), ++ "tags_all": tftags.TagsSchemaComputed(), + }, + } +} @@ -698,7 +698,7 @@ index 0000000000..94c9a8c29b +} diff --git a/internal/service/gamelift/matchmaking_rule_set.go b/internal/service/gamelift/matchmaking_rule_set.go new file mode 100644 -index 0000000000..28d15ecf5e +index 0000000000..5ebbc193dd --- /dev/null +++ b/internal/service/gamelift/matchmaking_rule_set.go @@ -0,0 +1,163 @@ @@ -756,7 +756,7 @@ index 0000000000..28d15ecf5e + Computed: true, + }, + "tags": tftags.TagsSchema(), -+ "tags_all": tftags.TagsSchemaTrulyComputed(), ++ "tags_all": tftags.TagsSchemaComputed(), + }, + } +} diff --git a/patches/0015-Reverts-patches-to-S3BucketLegacy-and-GameLift.patch b/patches/0014-Reverts-patches-to-S3BucketLegacy-and-GameLift.patch similarity index 99% rename from patches/0015-Reverts-patches-to-S3BucketLegacy-and-GameLift.patch rename to patches/0014-Reverts-patches-to-S3BucketLegacy-and-GameLift.patch index bc127c8d7ce..dadd4204d8a 100644 --- a/patches/0015-Reverts-patches-to-S3BucketLegacy-and-GameLift.patch +++ b/patches/0014-Reverts-patches-to-S3BucketLegacy-and-GameLift.patch @@ -12,7 +12,7 @@ This PR reverts our patches which will prevent future merge conflicts, and updat call sites to plumb through the proper Context objects. diff --git a/internal/service/gamelift/matchmaking_configuration.go b/internal/service/gamelift/matchmaking_configuration.go -index 0a7c8ea635..d8ee20dc65 100644 +index 12bf0dd661..707b1c8e2b 100644 --- a/internal/service/gamelift/matchmaking_configuration.go +++ b/internal/service/gamelift/matchmaking_configuration.go @@ -2,13 +2,13 @@ package gamelift @@ -162,7 +162,7 @@ index 0a7c8ea635..d8ee20dc65 100644 return nil diff --git a/internal/service/gamelift/matchmaking_rule_set.go b/internal/service/gamelift/matchmaking_rule_set.go -index 28d15ecf5e..8c1189199f 100644 +index 5ebbc193dd..f38585f58d 100644 --- a/internal/service/gamelift/matchmaking_rule_set.go +++ b/internal/service/gamelift/matchmaking_rule_set.go @@ -2,12 +2,12 @@ package gamelift diff --git a/patches/0016-Revert-Update-endpointHashIPAddress.patch b/patches/0015-Revert-Update-endpointHashIPAddress.patch similarity index 100% rename from patches/0016-Revert-Update-endpointHashIPAddress.patch rename to patches/0015-Revert-Update-endpointHashIPAddress.patch diff --git a/patches/0017-Fixup-gamelift-context.patch b/patches/0016-Fixup-gamelift-context.patch similarity index 96% rename from patches/0017-Fixup-gamelift-context.patch rename to patches/0016-Fixup-gamelift-context.patch index f813dfc75cd..63e30df331f 100644 --- a/patches/0017-Fixup-gamelift-context.patch +++ b/patches/0016-Fixup-gamelift-context.patch @@ -5,7 +5,7 @@ Subject: [PATCH] Fixup gamelift context diff --git a/internal/service/gamelift/matchmaking_configuration.go b/internal/service/gamelift/matchmaking_configuration.go -index d8ee20dc65..e17f71e6b6 100644 +index 707b1c8e2b..d4fa735fa0 100644 --- a/internal/service/gamelift/matchmaking_configuration.go +++ b/internal/service/gamelift/matchmaking_configuration.go @@ -148,7 +148,7 @@ func ResourceMatchMakingConfiguration() *schema.Resource { @@ -18,7 +18,7 @@ index d8ee20dc65..e17f71e6b6 100644 input := gamelift.CreateMatchmakingConfigurationInput{ AcceptanceRequired: aws.Bool(d.Get("acceptance_required").(bool)), diff --git a/internal/service/gamelift/matchmaking_rule_set.go b/internal/service/gamelift/matchmaking_rule_set.go -index 8c1189199f..254c96efc6 100644 +index f38585f58d..badb366f31 100644 --- a/internal/service/gamelift/matchmaking_rule_set.go +++ b/internal/service/gamelift/matchmaking_rule_set.go @@ -60,7 +60,7 @@ func ResourceMatchmakingRuleSet() *schema.Resource { diff --git a/patches/0018-Change-default-descriptions-to-Managed-by-Pulumi.patch b/patches/0017-Change-default-descriptions-to-Managed-by-Pulumi.patch similarity index 100% rename from patches/0018-Change-default-descriptions-to-Managed-by-Pulumi.patch rename to patches/0017-Change-default-descriptions-to-Managed-by-Pulumi.patch diff --git a/patches/0019-remove-required-elements-from-schema-and-fix-tests-7.patch b/patches/0018-remove-required-elements-from-schema-and-fix-tests-7.patch similarity index 99% rename from patches/0019-remove-required-elements-from-schema-and-fix-tests-7.patch rename to patches/0018-remove-required-elements-from-schema-and-fix-tests-7.patch index 67570f9e5dd..936f3583795 100644 --- a/patches/0019-remove-required-elements-from-schema-and-fix-tests-7.patch +++ b/patches/0018-remove-required-elements-from-schema-and-fix-tests-7.patch @@ -6,7 +6,7 @@ Subject: [PATCH] remove required elements from schema and fix tests (#77) Co-authored-by: Lee Briggs diff --git a/internal/service/gamelift/matchmaking_configuration.go b/internal/service/gamelift/matchmaking_configuration.go -index e17f71e6b6..4a0ccf149d 100644 +index d4fa735fa0..4e360e07c7 100644 --- a/internal/service/gamelift/matchmaking_configuration.go +++ b/internal/service/gamelift/matchmaking_configuration.go @@ -29,7 +29,7 @@ func ResourceMatchMakingConfiguration() *schema.Resource { @@ -169,7 +169,7 @@ index 94c9a8c29b..339f9dd6df 100644 }) diff --git a/internal/service/gamelift/matchmaking_rule_set.go b/internal/service/gamelift/matchmaking_rule_set.go -index 254c96efc6..54b86a0426 100644 +index badb366f31..e13832dad8 100644 --- a/internal/service/gamelift/matchmaking_rule_set.go +++ b/internal/service/gamelift/matchmaking_rule_set.go @@ -119,11 +119,11 @@ func resourceMatchmakingRuleSetRead(ctx context.Context, d *schema.ResourceData, diff --git a/patches/0020-Temp-remove-cognito_identity_pool_roles_attachment-e.patch b/patches/0019-Temp-remove-cognito_identity_pool_roles_attachment-e.patch similarity index 100% rename from patches/0020-Temp-remove-cognito_identity_pool_roles_attachment-e.patch rename to patches/0019-Temp-remove-cognito_identity_pool_roles_attachment-e.patch diff --git a/patches/0021-Fix-elbv2-target-group-read-to-workaround-2517.patch b/patches/0020-Fix-elbv2-target-group-read-to-workaround-2517.patch similarity index 100% rename from patches/0021-Fix-elbv2-target-group-read-to-workaround-2517.patch rename to patches/0020-Fix-elbv2-target-group-read-to-workaround-2517.patch diff --git a/patches/0022-Fix-spurrious-json-diff-for-redrive_policy.patch b/patches/0021-Fix-spurrious-json-diff-for-redrive_policy.patch similarity index 100% rename from patches/0022-Fix-spurrious-json-diff-for-redrive_policy.patch rename to patches/0021-Fix-spurrious-json-diff-for-redrive_policy.patch diff --git a/patches/0023-Provide-context-to-conns.patch b/patches/0022-Provide-context-to-conns.patch similarity index 99% rename from patches/0023-Provide-context-to-conns.patch rename to patches/0022-Provide-context-to-conns.patch index f1e7cafb996..41a81141711 100644 --- a/patches/0023-Provide-context-to-conns.patch +++ b/patches/0022-Provide-context-to-conns.patch @@ -49,7 +49,7 @@ index f587fcbcce..f77ca2b249 100644 log.Printf("[DEBUG] Cache security group delete: %s", d.Id()) diff --git a/internal/service/gamelift/matchmaking_configuration.go b/internal/service/gamelift/matchmaking_configuration.go -index 4a0ccf149d..72f7d31d85 100644 +index 4e360e07c7..620d913981 100644 --- a/internal/service/gamelift/matchmaking_configuration.go +++ b/internal/service/gamelift/matchmaking_configuration.go @@ -146,7 +146,7 @@ func ResourceMatchMakingConfiguration() *schema.Resource { @@ -107,7 +107,7 @@ index 4a0ccf149d..72f7d31d85 100644 _, err := conn.DeleteMatchmakingConfiguration(&gamelift.DeleteMatchmakingConfigurationInput{ Name: aws.String(d.Id()), diff --git a/internal/service/gamelift/matchmaking_rule_set.go b/internal/service/gamelift/matchmaking_rule_set.go -index 54b86a0426..d9f2424b7a 100644 +index e13832dad8..bae1c86072 100644 --- a/internal/service/gamelift/matchmaking_rule_set.go +++ b/internal/service/gamelift/matchmaking_rule_set.go @@ -58,7 +58,7 @@ func ResourceMatchmakingRuleSet() *schema.Resource { diff --git a/patches/0025-move-shim-logic-to-upstream-as-a-patch.patch b/patches/0023-move-shim-logic-to-upstream-as-a-patch.patch similarity index 100% rename from patches/0025-move-shim-logic-to-upstream-as-a-patch.patch rename to patches/0023-move-shim-logic-to-upstream-as-a-patch.patch diff --git a/patches/0024-Match-the-tags-behavior-of-other-resources.patch b/patches/0024-Match-the-tags-behavior-of-other-resources.patch deleted file mode 100644 index 83cb85cc747..00000000000 --- a/patches/0024-Match-the-tags-behavior-of-other-resources.patch +++ /dev/null @@ -1,45 +0,0 @@ -From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 -From: Ian Wahbe -Date: Wed, 2 Aug 2023 14:12:03 +0200 -Subject: [PATCH] Match the "tags" behavior of other resources - - -diff --git a/internal/service/s3legacy/bucket_legacy.go b/internal/service/s3legacy/bucket_legacy.go -index 575767763b..007c2f2dc1 100644 ---- a/internal/service/s3legacy/bucket_legacy.go -+++ b/internal/service/s3legacy/bucket_legacy.go -@@ -31,6 +31,7 @@ import ( - "github.com/hashicorp/terraform-provider-aws/internal/flex" - tftags "github.com/hashicorp/terraform-provider-aws/internal/tags" - "github.com/hashicorp/terraform-provider-aws/internal/tfresource" -+ "github.com/hashicorp/terraform-provider-aws/internal/types" - "github.com/hashicorp/terraform-provider-aws/internal/verify" - ) - -@@ -855,8 +856,6 @@ func resourceBucketLegacyUpdate(ctx context.Context, d *schema.ResourceData, met - - func resourceBucketLegacyRead(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics { - conn := meta.(*conns.AWSClient).S3Conn(ctx) -- defaultTagsConfig := meta.(*conns.AWSClient).DefaultTagsConfig -- ignoreTagsConfig := meta.(*conns.AWSClient).IgnoreTagsConfig - - input := &s3.HeadBucketInput{ - Bucket: aws.String(d.Id()), -@@ -1393,15 +1392,8 @@ func resourceBucketLegacyRead(ctx context.Context, d *schema.ResourceData, meta - return diag.Errorf("error listing tags for S3 Bucket (%s): unable to convert tags", d.Id()) - } - -- tags = tags.IgnoreAWS().IgnoreConfig(ignoreTagsConfig) -- -- //lintignore:AWSR002 -- if err := d.Set("tags", tags.RemoveDefaultConfig(defaultTagsConfig).Map()); err != nil { -- return diag.Errorf("error setting tags: %w", err) -- } -- -- if err := d.Set("tags_all", tags.Map()); err != nil { -- return diag.Errorf("error setting tags_all: %w", err) -+ if inContext, ok := tftags.FromContext(ctx); ok { -+ inContext.TagsOut = types.Some(tags) - } - - arn := arn.ARN{ diff --git a/patches/0026-Restore-S3ConnURICleaningDisabled.patch b/patches/0024-Restore-S3ConnURICleaningDisabled.patch similarity index 100% rename from patches/0026-Restore-S3ConnURICleaningDisabled.patch rename to patches/0024-Restore-S3ConnURICleaningDisabled.patch diff --git a/patches/0028-aws_eks_cluster-implement-default_addons_to_remove.patch b/patches/0025-aws_eks_cluster-implement-default_addons_to_remove.patch similarity index 100% rename from patches/0028-aws_eks_cluster-implement-default_addons_to_remove.patch rename to patches/0025-aws_eks_cluster-implement-default_addons_to_remove.patch diff --git a/patches/0026-Optimize-startup-performance.patch b/patches/0026-Optimize-startup-performance.patch new file mode 100644 index 00000000000..433fa4c560c --- /dev/null +++ b/patches/0026-Optimize-startup-performance.patch @@ -0,0 +1,49 @@ +From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 +From: Anton Tayanovskyy +Date: Thu, 30 Nov 2023 14:28:37 -0500 +Subject: [PATCH] Optimize startup performance + + +diff --git a/internal/provider/provider_tagcheck.go b/internal/provider/provider_tagcheck.go +new file mode 100644 +index 0000000000..8cea6059ba +--- /dev/null ++++ b/internal/provider/provider_tagcheck.go +@@ -0,0 +1,37 @@ ++package provider ++ ++import ( ++ "context" ++ ++ "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" ++ "github.com/hashicorp/terraform-provider-aws/names" ++) ++ ++type disableTagsSchemaCheckKey struct{} ++ ++func DisableTagSchemaCheck(ctx context.Context) context.Context { ++ return context.WithValue(ctx, disableTagsSchemaCheckKey{}, true) ++} ++ ++func schemaMapForTagsChecking(ctx context.Context, r *schema.Resource, tagsComputed bool) map[string]*schema.Schema { ++ flag := ctx.Value(disableTagsSchemaCheckKey{}) ++ switch flag := flag.(type) { ++ case bool: ++ if flag { ++ //lintignore:S013 ++ return map[string]*schema.Schema{ ++ names.AttrTags: { ++ Type: schema.TypeMap, ++ Computed: tagsComputed, ++ Elem: &schema.Schema{Type: schema.TypeString}, ++ }, ++ names.AttrTagsAll: { ++ Type: schema.TypeMap, ++ Computed: true, ++ Elem: &schema.Schema{Type: schema.TypeString}, ++ }, ++ } ++ } ++ } ++ return r.SchemaMap() ++} diff --git a/patches/0027-Do-not-compute-tags_all-at-TF-level.patch b/patches/0027-Do-not-compute-tags_all-at-TF-level.patch deleted file mode 100644 index 4699767afd6..00000000000 --- a/patches/0027-Do-not-compute-tags_all-at-TF-level.patch +++ /dev/null @@ -1,388 +0,0 @@ -From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 -From: Anton Tayanovskyy -Date: Mon, 6 Nov 2023 11:17:16 -0500 -Subject: [PATCH] Do not compute tags_all at TF level - - -diff --git a/internal/framework/resource_with_configure.go b/internal/framework/resource_with_configure.go -index 7c33a2aae0..3c17d64604 100644 ---- a/internal/framework/resource_with_configure.go -+++ b/internal/framework/resource_with_configure.go -@@ -30,6 +30,11 @@ func (r *ResourceWithConfigure) Configure(_ context.Context, request resource.Co - - // SetTagsAll calculates the new value for the `tags_all` attribute. - func (r *ResourceWithConfigure) SetTagsAll(ctx context.Context, request resource.ModifyPlanRequest, response *resource.ModifyPlanResponse) { -+ // Skip SetTagsAll in Pulumi because it is handled at Pulumi provider level. -+ if 1+1 == 2 { -+ return -+ } -+ - // If the entire plan is null, the resource is planned for destruction. - if request.Plan.Raw.IsNull() { - return -diff --git a/internal/provider/fwprovider/provider.go b/internal/provider/fwprovider/provider.go -index 6415ce2355..c80c01b8d1 100644 ---- a/internal/provider/fwprovider/provider.go -+++ b/internal/provider/fwprovider/provider.go -@@ -430,8 +430,8 @@ func (p *fwprovider) Resources(ctx context.Context) []func() resource.Resource { - continue - } - if v, ok := schemaResponse.Schema.Attributes[names.AttrTagsAll]; ok { -- if !v.IsComputed() { -- errs = append(errs, fmt.Errorf("`%s` attribute must be Computed: %s", names.AttrTagsAll, typeName)) -+ if v.IsComputed() { -+ errs = append(errs, fmt.Errorf("`%s` attribute must not be Computed: %s", names.AttrTagsAll, typeName)) - continue - } - } else { -diff --git a/internal/service/appconfig/environment.go b/internal/service/appconfig/environment.go -index facee5530d..faa7d62e28 100644 ---- a/internal/service/appconfig/environment.go -+++ b/internal/service/appconfig/environment.go -@@ -104,7 +104,7 @@ func (r *resourceEnvironment) Schema(ctx context.Context, request resource.Schem - }, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - }, - Blocks: map[string]schema.Block{ - "monitor": schema.SetNestedBlock{ -diff --git a/internal/service/auditmanager/assessment.go b/internal/service/auditmanager/assessment.go -index 633319638e..323cd0f205 100644 ---- a/internal/service/auditmanager/assessment.go -+++ b/internal/service/auditmanager/assessment.go -@@ -95,7 +95,7 @@ func (r *resourceAssessment) Schema(ctx context.Context, req resource.SchemaRequ - Computed: true, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - }, - Blocks: map[string]schema.Block{ - "assessment_reports_destination": schema.ListNestedBlock{ -diff --git a/internal/service/auditmanager/control.go b/internal/service/auditmanager/control.go -index 818a884c4b..26342bdb52 100644 ---- a/internal/service/auditmanager/control.go -+++ b/internal/service/auditmanager/control.go -@@ -67,7 +67,7 @@ func (r *resourceControl) Schema(ctx context.Context, req resource.SchemaRequest - Required: true, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - "testing_information": schema.StringAttribute{ - Optional: true, - }, -diff --git a/internal/service/auditmanager/framework.go b/internal/service/auditmanager/framework.go -index ffa236c568..5733dd6110 100644 ---- a/internal/service/auditmanager/framework.go -+++ b/internal/service/auditmanager/framework.go -@@ -69,7 +69,7 @@ func (r *resourceFramework) Schema(ctx context.Context, req resource.SchemaReque - Required: true, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - }, - Blocks: map[string]schema.Block{ - "control_sets": schema.SetNestedBlock{ -diff --git a/internal/service/batch/job_queue.go b/internal/service/batch/job_queue.go -index 9e41a479d9..98ca3ae16c 100644 ---- a/internal/service/batch/job_queue.go -+++ b/internal/service/batch/job_queue.go -@@ -109,7 +109,7 @@ func (r *resourceJobQueue) Schema(ctx context.Context, request resource.SchemaRe - }, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - }, - } - -diff --git a/internal/service/batch/job_queue_schema.go b/internal/service/batch/job_queue_schema.go -index e8e1a272eb..a4a1625554 100644 ---- a/internal/service/batch/job_queue_schema.go -+++ b/internal/service/batch/job_queue_schema.go -@@ -58,7 +58,7 @@ func jobQueueSchema0(ctx context.Context) schema.Schema { - }, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - }, - Blocks: map[string]schema.Block{ - names.AttrTimeouts: timeouts.Block(ctx, timeouts.Opts{ -diff --git a/internal/service/ec2/ec2_instance_connect_endpoint.go b/internal/service/ec2/ec2_instance_connect_endpoint.go -index 90273f5fb2..7eb040c4e2 100644 ---- a/internal/service/ec2/ec2_instance_connect_endpoint.go -+++ b/internal/service/ec2/ec2_instance_connect_endpoint.go -@@ -118,7 +118,7 @@ func (r *instanceConnectEndpointResource) Schema(ctx context.Context, req resour - }, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - names.AttrVPCID: schema.StringAttribute{ - Computed: true, - PlanModifiers: []planmodifier.String{ -diff --git a/internal/service/ec2/vpc_security_group_ingress_rule.go b/internal/service/ec2/vpc_security_group_ingress_rule.go -index 9d5de83433..f9d99d2663 100644 ---- a/internal/service/ec2/vpc_security_group_ingress_rule.go -+++ b/internal/service/ec2/vpc_security_group_ingress_rule.go -@@ -226,7 +226,7 @@ func (r *securityGroupRuleResource) Schema(ctx context.Context, request resource - }, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - "to_port": schema.Int64Attribute{ - Optional: true, - Validators: []validator.Int64{ -diff --git a/internal/service/lexv2models/bot.go b/internal/service/lexv2models/bot.go -index 95c069c72f..bb4bcf390e 100644 ---- a/internal/service/lexv2models/bot.go -+++ b/internal/service/lexv2models/bot.go -@@ -82,7 +82,7 @@ func (r *resourceBot) Schema(ctx context.Context, req resource.SchemaRequest, re - Required: true, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - "test_bot_alias_tags": schema.MapAttribute{ - ElementType: types.StringType, - Optional: true, -diff --git a/internal/service/opensearchserverless/collection.go b/internal/service/opensearchserverless/collection.go -index ecec56b129..637bbc3595 100644 ---- a/internal/service/opensearchserverless/collection.go -+++ b/internal/service/opensearchserverless/collection.go -@@ -123,7 +123,7 @@ func (r *resourceCollection) Schema(ctx context.Context, req resource.SchemaRequ - }, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - names.AttrType: schema.StringAttribute{ - Optional: true, - Computed: true, -diff --git a/internal/service/quicksight/namespace.go b/internal/service/quicksight/namespace.go -index 959c129103..185c8f7d74 100644 ---- a/internal/service/quicksight/namespace.go -+++ b/internal/service/quicksight/namespace.go -@@ -93,7 +93,7 @@ func (r *resourceNamespace) Schema(ctx context.Context, req resource.SchemaReque - }, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - }, - Blocks: map[string]schema.Block{ - names.AttrTimeouts: timeouts.Block(ctx, timeouts.Opts{ -diff --git a/internal/service/quicksight/vpc_connection.go b/internal/service/quicksight/vpc_connection.go -index ac4f6d5e83..059732c2fc 100644 ---- a/internal/service/quicksight/vpc_connection.go -+++ b/internal/service/quicksight/vpc_connection.go -@@ -142,7 +142,7 @@ func (r *resourceVPCConnection) Schema(ctx context.Context, req resource.SchemaR - }, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - }, - Blocks: map[string]schema.Block{ - names.AttrTimeouts: timeouts.Block(ctx, timeouts.Opts{ -diff --git a/internal/service/resourceexplorer2/index.go b/internal/service/resourceexplorer2/index.go -index 011191840f..8e90530806 100644 ---- a/internal/service/resourceexplorer2/index.go -+++ b/internal/service/resourceexplorer2/index.go -@@ -56,7 +56,7 @@ func (r *resourceIndex) Schema(ctx context.Context, request resource.SchemaReque - names.AttrARN: framework.ARNAttributeComputedOnly(), - names.AttrID: framework.IDAttribute(), - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - names.AttrType: schema.StringAttribute{ - CustomType: fwtypes.StringEnumType[awstypes.IndexType](), - Required: true, -diff --git a/internal/service/resourceexplorer2/view.go b/internal/service/resourceexplorer2/view.go -index 56e257f3d0..fddc928d9b 100644 ---- a/internal/service/resourceexplorer2/view.go -+++ b/internal/service/resourceexplorer2/view.go -@@ -76,7 +76,7 @@ func (r *resourceView) Schema(ctx context.Context, request resource.SchemaReques - }, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - }, - Blocks: map[string]schema.Block{ - "filters": schema.ListNestedBlock{ -diff --git a/internal/service/workspaces/connection_alias.go b/internal/service/workspaces/connection_alias.go -index a6a9f582fa..77cd122278 100644 ---- a/internal/service/workspaces/connection_alias.go -+++ b/internal/service/workspaces/connection_alias.go -@@ -82,7 +82,7 @@ func (r *resourceConnectionAlias) Schema(ctx context.Context, req resource.Schem - }, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - }, - Blocks: map[string]schema.Block{ - names.AttrTimeouts: timeouts.Block(ctx, timeouts.Opts{ -diff --git a/internal/verify/diff.go b/internal/verify/diff.go -index 0bc956a747..e0636e99ce 100644 ---- a/internal/verify/diff.go -+++ b/internal/verify/diff.go -@@ -5,101 +5,12 @@ package verify - - import ( - "context" -- "fmt" - "time" - - "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" -- "github.com/hashicorp/terraform-provider-aws/internal/conns" -- tftags "github.com/hashicorp/terraform-provider-aws/internal/tags" - ) - --// Find JSON diff functions in the json.go file. -- --// SetTagsDiff sets the new plan difference with the result of --// merging resource tags on to those defined at the provider-level; --// returns an error if unsuccessful or if the resource tags are identical --// to those configured at the provider-level to avoid non-empty plans --// after resource READ operations as resource and provider-level tags --// will be indistinguishable when returned from an AWS API. - func SetTagsDiff(ctx context.Context, diff *schema.ResourceDiff, meta interface{}) error { -- defaultTagsConfig := meta.(*conns.AWSClient).DefaultTagsConfig -- ignoreTagsConfig := meta.(*conns.AWSClient).IgnoreTagsConfig -- -- resourceTags := tftags.New(ctx, diff.Get("tags").(map[string]interface{})) -- -- allTags := defaultTagsConfig.MergeTags(resourceTags).IgnoreConfig(ignoreTagsConfig) -- // To ensure "tags_all" is correctly computed, we explicitly set the attribute diff -- // when the merger of resource-level tags onto provider-level tags results in n > 0 tags, -- // otherwise we mark the attribute as "Computed" only when there is a known diff (excluding an empty map) -- // or a change for "tags_all". -- // Reference: https://github.com/hashicorp/terraform-provider-aws/issues/18366 -- // Reference: https://github.com/hashicorp/terraform-provider-aws/issues/19005 -- -- if !diff.GetRawPlan().GetAttr("tags").IsWhollyKnown() { -- if err := diff.SetNewComputed("tags_all"); err != nil { -- return fmt.Errorf("setting tags_all to computed: %w", err) -- } -- return nil -- } -- -- if diff.HasChange("tags") { -- _, n := diff.GetChange("tags") -- newTags := tftags.New(ctx, n.(map[string]interface{})) -- -- if newTags.HasZeroValue() { -- if err := diff.SetNewComputed("tags_all"); err != nil { -- return fmt.Errorf("setting tags_all to computed: %w", err) -- } -- } -- -- if len(allTags) > 0 && (!newTags.HasZeroValue() || !allTags.HasZeroValue()) { -- if err := diff.SetNew("tags_all", allTags.Map()); err != nil { -- return fmt.Errorf("setting new tags_all diff: %w", err) -- } -- } -- -- if len(allTags) == 0 { -- if err := diff.SetNew("tags_all", allTags.Map()); err != nil { -- return fmt.Errorf("setting new tags_all diff: %w", err) -- } -- } -- } else if !diff.HasChange("tags") { -- if len(allTags) > 0 && !allTags.HasZeroValue() { -- if err := diff.SetNew("tags_all", allTags.Map()); err != nil { -- return fmt.Errorf("setting new tags_all diff: %w", err) -- } -- return nil -- } -- -- var ta tftags.KeyValueTags -- if tagsAll, ok := diff.Get("tags_all").(map[string]interface{}); ok { -- ta = tftags.New(ctx, tagsAll) -- } -- if len(allTags) > 0 && !ta.DeepEqual(allTags) && allTags.HasZeroValue() { -- if err := diff.SetNewComputed("tags_all"); err != nil { -- return fmt.Errorf("setting tags_all to computed: %w", err) -- } -- return nil -- } -- } else if tagsAll, ok := diff.Get("tags_all").(map[string]interface{}); ok { -- ta := tftags.New(ctx, tagsAll) -- if !ta.DeepEqual(allTags) { -- if allTags.HasZeroValue() { -- if err := diff.SetNewComputed("tags_all"); err != nil { -- return fmt.Errorf("setting tags_all to computed: %w", err) -- } -- } -- } -- } else if len(diff.Get("tags_all").(map[string]interface{})) > 0 { -- if err := diff.SetNewComputed("tags_all"); err != nil { -- return fmt.Errorf("setting tags_all to computed: %w", err) -- } -- } else if diff.HasChange("tags_all") { -- if err := diff.SetNewComputed("tags_all"); err != nil { -- return fmt.Errorf("setting tags_all to computed: %w", err) -- } -- } -- - return nil - } - -diff --git a/shim/shim.go b/shim/shim.go -index 2af7c06925..ce64074bfd 100644 ---- a/shim/shim.go -+++ b/shim/shim.go -@@ -20,6 +20,9 @@ func NewUpstreamProvider(ctx context.Context) (UpstreamProvider, error) { - if err != nil { - return UpstreamProvider{}, err - } -+ if primary != nil { -+ markTagsAllNotComputedForResources(primary) -+ } - pf := fwprovider.New(primary) - return UpstreamProvider{ - SDKV2Provider: primary, -@@ -34,3 +37,35 @@ type TagIgnoreConfig = tags.IgnoreConfig - func NewTagConfig(ctx context.Context, i interface{}) TagConfig { - return TagConfig{Tags: tags.New(ctx, i)} - } -+ -+// For resources with tags_all attribute, ensures that the schema of tags_all matches the schema of -+// tags. In particular, this makes sure tags_all is not computed and is ForceNew if necessary. The -+// rationale for this is that Pulumi copies tags to tags_all before it hits the TF layer, so these -+// attributes must match in schema. -+func markTagsAllNotComputedForResources(sdkV2Provider *schema.Provider) { -+ updatedResourcesMap := map[string]*schema.Resource{} -+ for rn, r := range sdkV2Provider.ResourcesMap { -+ if _, ok := r.Schema["tags_all"]; ok { -+ var updatedResource schema.Resource = *r -+ updatedResource.Schema = map[string]*schema.Schema{} -+ -+ for k, v := range r.Schema { -+ if k == "tags_all" { -+ if tagsSchema, ok := r.Schema["tags"]; ok { -+ tagsAll := *tagsSchema -+ updatedResource.Schema[k] = &tagsAll -+ } else { -+ panic("Unable to edit tagsAll schema for " + rn) -+ } -+ } else { -+ updatedResource.Schema[k] = v -+ } -+ } -+ -+ updatedResourcesMap[rn] = &updatedResource -+ } else { -+ updatedResourcesMap[rn] = r -+ } -+ } -+ sdkV2Provider.ResourcesMap = updatedResourcesMap -+} diff --git a/patches/0031-Fix-job-queue-sdkv2-migration.patch b/patches/0027-Fix-job-queue-sdkv2-migration.patch similarity index 95% rename from patches/0031-Fix-job-queue-sdkv2-migration.patch rename to patches/0027-Fix-job-queue-sdkv2-migration.patch index 0f6f943307c..b098e77461d 100644 --- a/patches/0031-Fix-job-queue-sdkv2-migration.patch +++ b/patches/0027-Fix-job-queue-sdkv2-migration.patch @@ -5,7 +5,7 @@ Subject: [PATCH] Fix job queue sdkv2 migration diff --git a/internal/service/batch/job_queue_schema.go b/internal/service/batch/job_queue_schema.go -index a4a1625554..8057006cad 100644 +index e8e1a272eb..d602d4d301 100644 --- a/internal/service/batch/job_queue_schema.go +++ b/internal/service/batch/job_queue_schema.go @@ -93,6 +93,7 @@ func upgradeJobQueueResourceStateV0toV1(ctx context.Context, req resource.Upgrad diff --git a/patches/0034-Fail-fast-when-PF-resources-are-dropped.patch b/patches/0028-Fail-fast-when-PF-resources-are-dropped.patch similarity index 86% rename from patches/0034-Fail-fast-when-PF-resources-are-dropped.patch rename to patches/0028-Fail-fast-when-PF-resources-are-dropped.patch index 649566006d0..a7a4d2d728d 100644 --- a/patches/0034-Fail-fast-when-PF-resources-are-dropped.patch +++ b/patches/0028-Fail-fast-when-PF-resources-are-dropped.patch @@ -5,10 +5,10 @@ Subject: [PATCH] Fail fast when PF resources are dropped diff --git a/internal/provider/fwprovider/provider.go b/internal/provider/fwprovider/provider.go -index 257f831fbb..d9930aee64 100644 +index 6415ce2355..319b920366 100644 --- a/internal/provider/fwprovider/provider.go +++ b/internal/provider/fwprovider/provider.go -@@ -448,9 +448,8 @@ func (p *fwprovider) Resources(ctx context.Context) []func() resource.Resource { +@@ -449,9 +449,8 @@ func (p *fwprovider) Resources(ctx context.Context) []func() resource.Resource { } if err := errors.Join(errs...); err != nil { diff --git a/patches/0036-Disable-retry-for-KMS-access-denied-in-lambda.patch b/patches/0029-Disable-retry-for-KMS-access-denied-in-lambda.patch similarity index 100% rename from patches/0036-Disable-retry-for-KMS-access-denied-in-lambda.patch rename to patches/0029-Disable-retry-for-KMS-access-denied-in-lambda.patch diff --git a/patches/0029-Fix-markTagsAllNotComputedForResources-to-recognize-.patch b/patches/0029-Fix-markTagsAllNotComputedForResources-to-recognize-.patch deleted file mode 100644 index 1a5fe1cd486..00000000000 --- a/patches/0029-Fix-markTagsAllNotComputedForResources-to-recognize-.patch +++ /dev/null @@ -1,80 +0,0 @@ -From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 -From: Anton Tayanovskyy -Date: Wed, 29 Nov 2023 17:23:09 -0500 -Subject: [PATCH] Fix markTagsAllNotComputedForResources to recognize - SchemaFunc - - -diff --git a/shim/shim.go b/shim/shim.go -index ce64074bfd..e24e53fe17 100644 ---- a/shim/shim.go -+++ b/shim/shim.go -@@ -2,6 +2,7 @@ package shim - - import ( - "context" -+ "fmt" - - pfprovider "github.com/hashicorp/terraform-plugin-framework/provider" - "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" -@@ -43,29 +44,44 @@ func NewTagConfig(ctx context.Context, i interface{}) TagConfig { - // rationale for this is that Pulumi copies tags to tags_all before it hits the TF layer, so these - // attributes must match in schema. - func markTagsAllNotComputedForResources(sdkV2Provider *schema.Provider) { -- updatedResourcesMap := map[string]*schema.Resource{} -- for rn, r := range sdkV2Provider.ResourcesMap { -- if _, ok := r.Schema["tags_all"]; ok { -- var updatedResource schema.Resource = *r -- updatedResource.Schema = map[string]*schema.Schema{} - -- for k, v := range r.Schema { -- if k == "tags_all" { -- if tagsSchema, ok := r.Schema["tags"]; ok { -- tagsAll := *tagsSchema -- updatedResource.Schema[k] = &tagsAll -- } else { -- panic("Unable to edit tagsAll schema for " + rn) -- } -+ updateSchema := func(rn string, s map[string]*schema.Schema) map[string]*schema.Schema { -+ updatedSchema := map[string]*schema.Schema{} -+ for k, v := range s { -+ if k == "tags_all" { -+ if tagsSchema, ok := s["tags"]; ok { -+ tagsAll := *tagsSchema -+ updatedSchema[k] = &tagsAll - } else { -- updatedResource.Schema[k] = v -+ panic(fmt.Sprintf("Unable to edit tagsAll schema for %q", rn)) - } -+ } else { -+ updatedSchema[k] = v - } -+ } -+ return updatedSchema -+ } -+ -+ updatedResource := func(rn string, r *schema.Resource) *schema.Resource { -+ if _, ok := r.SchemaMap()["tags_all"]; !ok { -+ return r -+ } - -- updatedResourcesMap[rn] = &updatedResource -+ u := *r -+ if r.SchemaFunc != nil { -+ old := r.SchemaFunc -+ u.SchemaFunc = func() map[string]*schema.Schema { -+ return updateSchema(rn, old()) -+ } - } else { -- updatedResourcesMap[rn] = r -+ u.Schema = updateSchema(rn, r.Schema) - } -+ return &u -+ } -+ -+ updatedResourcesMap := map[string]*schema.Resource{} -+ for rn, r := range sdkV2Provider.ResourcesMap { -+ updatedResourcesMap[rn] = updatedResource(rn, r) - } - sdkV2Provider.ResourcesMap = updatedResourcesMap - } diff --git a/patches/0030-Optimize-startup-performance.patch b/patches/0030-Optimize-startup-performance.patch deleted file mode 100644 index 92523030f4a..00000000000 --- a/patches/0030-Optimize-startup-performance.patch +++ /dev/null @@ -1,159 +0,0 @@ -From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 -From: Anton Tayanovskyy -Date: Thu, 30 Nov 2023 14:28:37 -0500 -Subject: [PATCH] Optimize startup performance - - -diff --git a/internal/provider/provider.go b/internal/provider/provider.go -index 92763850ac..ef67582664 100644 ---- a/internal/provider/provider.go -+++ b/internal/provider/provider.go -@@ -312,7 +312,7 @@ func New(ctx context.Context) (*schema.Provider, error) { - interceptors := interceptorItems{} - - if v.Tags != nil { -- schema := r.SchemaMap() -+ schema := schemaMapForTagsChecking(ctx, r, true) - - // The data source has opted in to transparent tagging. - // Ensure that the schema look OK. -@@ -389,7 +389,7 @@ func New(ctx context.Context) (*schema.Provider, error) { - interceptors := interceptorItems{} - - if v.Tags != nil { -- schema := r.SchemaMap() -+ schema := schemaMapForTagsChecking(ctx, r, false) - - // The resource has opted in to transparent tagging. - // Ensure that the schema look OK. -diff --git a/internal/provider/provider_tagcheck.go b/internal/provider/provider_tagcheck.go -new file mode 100644 -index 0000000000..8cea6059ba ---- /dev/null -+++ b/internal/provider/provider_tagcheck.go -@@ -0,0 +1,37 @@ -+package provider -+ -+import ( -+ "context" -+ -+ "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" -+ "github.com/hashicorp/terraform-provider-aws/names" -+) -+ -+type disableTagsSchemaCheckKey struct{} -+ -+func DisableTagSchemaCheck(ctx context.Context) context.Context { -+ return context.WithValue(ctx, disableTagsSchemaCheckKey{}, true) -+} -+ -+func schemaMapForTagsChecking(ctx context.Context, r *schema.Resource, tagsComputed bool) map[string]*schema.Schema { -+ flag := ctx.Value(disableTagsSchemaCheckKey{}) -+ switch flag := flag.(type) { -+ case bool: -+ if flag { -+ //lintignore:S013 -+ return map[string]*schema.Schema{ -+ names.AttrTags: { -+ Type: schema.TypeMap, -+ Computed: tagsComputed, -+ Elem: &schema.Schema{Type: schema.TypeString}, -+ }, -+ names.AttrTagsAll: { -+ Type: schema.TypeMap, -+ Computed: true, -+ Elem: &schema.Schema{Type: schema.TypeString}, -+ }, -+ } -+ } -+ } -+ return r.SchemaMap() -+} -diff --git a/shim/shim.go b/shim/shim.go -index e24e53fe17..3378f955bb 100644 ---- a/shim/shim.go -+++ b/shim/shim.go -@@ -17,7 +17,7 @@ type UpstreamProvider struct { - } - - func NewUpstreamProvider(ctx context.Context) (UpstreamProvider, error) { -- primary, err := provider.New(ctx) -+ primary, err := provider.New(provider.DisableTagSchemaCheck(ctx)) - if err != nil { - return UpstreamProvider{}, err - } -@@ -44,44 +44,42 @@ func NewTagConfig(ctx context.Context, i interface{}) TagConfig { - // rationale for this is that Pulumi copies tags to tags_all before it hits the TF layer, so these - // attributes must match in schema. - func markTagsAllNotComputedForResources(sdkV2Provider *schema.Provider) { -- -- updateSchema := func(rn string, s map[string]*schema.Schema) map[string]*schema.Schema { -- updatedSchema := map[string]*schema.Schema{} -- for k, v := range s { -- if k == "tags_all" { -- if tagsSchema, ok := s["tags"]; ok { -- tagsAll := *tagsSchema -- updatedSchema[k] = &tagsAll -- } else { -- panic(fmt.Sprintf("Unable to edit tagsAll schema for %q", rn)) -- } -- } else { -- updatedSchema[k] = v -- } -- } -- return updatedSchema -+ updatedResourcesMap := map[string]*schema.Resource{} -+ for rn, r := range sdkV2Provider.ResourcesMap { -+ updatedResourcesMap[rn] = markTagsAllNotComputedForResource(rn, r) - } -+ sdkV2Provider.ResourcesMap = updatedResourcesMap -+} - -- updatedResource := func(rn string, r *schema.Resource) *schema.Resource { -- if _, ok := r.SchemaMap()["tags_all"]; !ok { -- return r -+func markTagsAllNotComputedForResource(rn string, r *schema.Resource) *schema.Resource { -+ u := *r -+ if r.SchemaFunc != nil { -+ old := r.SchemaFunc -+ u.SchemaFunc = func() map[string]*schema.Schema { -+ return markTagsAllNotComputedForSchema(rn, old()) - } -+ } else { -+ u.Schema = markTagsAllNotComputedForSchema(rn, r.Schema) -+ } -+ return &u -+} - -- u := *r -- if r.SchemaFunc != nil { -- old := r.SchemaFunc -- u.SchemaFunc = func() map[string]*schema.Schema { -- return updateSchema(rn, old()) -+func markTagsAllNotComputedForSchema(rn string, s map[string]*schema.Schema) map[string]*schema.Schema { -+ if _, ok := s["tags_all"]; !ok { -+ return s -+ } -+ updatedSchema := map[string]*schema.Schema{} -+ for k, v := range s { -+ if k == "tags_all" { -+ if tagsSchema, ok := s["tags"]; ok { -+ tagsAll := *tagsSchema -+ updatedSchema[k] = &tagsAll -+ } else { -+ panic(fmt.Sprintf("Unable to edit tagsAll schema for %q", rn)) - } - } else { -- u.Schema = updateSchema(rn, r.Schema) -+ updatedSchema[k] = v - } -- return &u -- } -- -- updatedResourcesMap := map[string]*schema.Resource{} -- for rn, r := range sdkV2Provider.ResourcesMap { -- updatedResourcesMap[rn] = updatedResource(rn, r) - } -- sdkV2Provider.ResourcesMap = updatedResourcesMap -+ return updatedSchema - } diff --git a/patches/0037-Patch-ACM-retry-to-not-retry-after-LimitExceededExce.patch b/patches/0030-Patch-ACM-retry-to-not-retry-after-LimitExceededExce.patch similarity index 100% rename from patches/0037-Patch-ACM-retry-to-not-retry-after-LimitExceededExce.patch rename to patches/0030-Patch-ACM-retry-to-not-retry-after-LimitExceededExce.patch diff --git a/patches/0038-Restore-legacy-bucket.patch b/patches/0031-Restore-legacy-bucket.patch similarity index 93% rename from patches/0038-Restore-legacy-bucket.patch rename to patches/0031-Restore-legacy-bucket.patch index 47d1336d6f7..2f5b479201e 100644 --- a/patches/0038-Restore-legacy-bucket.patch +++ b/patches/0031-Restore-legacy-bucket.patch @@ -5,10 +5,10 @@ Subject: [PATCH] Restore legacy bucket diff --git a/go.mod b/go.mod -index 6d14fe0fc8..af57d1b01c 100644 +index f2ebf59e9a..aabe9bd190 100644 --- a/go.mod +++ b/go.mod -@@ -206,6 +206,7 @@ require ( +@@ -212,6 +212,7 @@ require ( github.com/gertd/go-pluralize v0.2.1 github.com/google/go-cmp v0.6.0 github.com/hashicorp/aws-cloudformation-resource-schema-sdk-go v0.23.0 @@ -17,10 +17,10 @@ index 6d14fe0fc8..af57d1b01c 100644 github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2 v2.0.0-beta.55 github.com/hashicorp/awspolicyequivalence v1.6.0 diff --git a/go.sum b/go.sum -index 40e2a0dc1c..9a012867fb 100644 +index d53e627b88..9e16d60b55 100644 --- a/go.sum +++ b/go.sum -@@ -475,6 +475,7 @@ github.com/go-logr/logr v1.4.1 h1:pKouT5E8xu9zeFC39JXRDukb6JFQPXM5p5I91188VAQ= +@@ -487,6 +487,7 @@ github.com/go-logr/logr v1.4.1 h1:pKouT5E8xu9zeFC39JXRDukb6JFQPXM5p5I91188VAQ= github.com/go-logr/logr v1.4.1/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= github.com/go-logr/stdr v1.2.2 h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag= github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE= @@ -28,7 +28,7 @@ index 40e2a0dc1c..9a012867fb 100644 github.com/go-test/deep v1.1.0 h1:WOcxcdHcvdgThNXjw0t76K42FXTU7HpNQWHpA2HHNlg= github.com/go-test/deep v1.1.0/go.mod h1:5C2ZWiW0ErCdrYzpqxLbTX7MG14M9iiw8DgHncVwcsE= github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da h1:oI5xCqsCo564l8iNU+DwB5epxmsaqB+rhGL0m5jtYqE= -@@ -494,6 +495,8 @@ github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= +@@ -506,6 +507,8 @@ github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/hashicorp/aws-cloudformation-resource-schema-sdk-go v0.23.0 h1:l16/Vrl0+x+HjHJWEjcKPwHYoxN9EC78gAFXKlH6m84= github.com/hashicorp/aws-cloudformation-resource-schema-sdk-go v0.23.0/go.mod h1:HAmscHyzSOfB1Dr16KLc177KNbn83wscnZC+N7WyaM8= @@ -37,7 +37,7 @@ index 40e2a0dc1c..9a012867fb 100644 github.com/hashicorp/aws-sdk-go-base/v2 v2.0.0-beta.54 h1:O37FpbmkDSmSPgukMJLAzJzo5WBSFQx0iwn4PlY6BKI= github.com/hashicorp/aws-sdk-go-base/v2 v2.0.0-beta.54/go.mod h1:TJ+Mz49cn0zKURLX5haphWDbmGWz15OsEiLp1CcXDwY= github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2 v2.0.0-beta.55 h1:7izXD15MCmPcWbKJ5qAwcSlnWvTwkioIJkq0+OJIJG0= -@@ -569,6 +572,7 @@ github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99/go.mod h1:1lJo3i +@@ -581,6 +584,7 @@ github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99/go.mod h1:1lJo3i github.com/jessevdk/go-flags v1.4.0/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI= github.com/jhump/protoreflect v1.15.1 h1:HUMERORf3I3ZdX05WaQ6MIpd/NJ434hTp5YiKgfCL6c= github.com/jhump/protoreflect v1.15.1/go.mod h1:jD/2GMKKE6OqX8qTjhADU1e6DShO+gavG9e0Q693nKo= @@ -45,7 +45,7 @@ index 40e2a0dc1c..9a012867fb 100644 github.com/jmespath/go-jmespath v0.4.0 h1:BEgLn5cpjn8UN1mAw4NjwDrS35OdebyEtFe+9YPoQUg= github.com/jmespath/go-jmespath v0.4.0/go.mod h1:T8mJZnbsbmF+m6zOOFylbeCJqk5+pHWvzYPziyZiYoo= github.com/jmespath/go-jmespath/internal/testify v1.5.1 h1:shLQSRRSCCPj3f2gpwzGwWFoC7ycTf1rcQZHOlsJ6N8= -@@ -681,6 +685,7 @@ golang.org/x/mod v0.17.0 h1:zY54UmvipHiNd+pm+m0x9KhZ9hl1/7QNMyxXbc6ICqA= +@@ -693,6 +697,7 @@ golang.org/x/mod v0.17.0 h1:zY54UmvipHiNd+pm+m0x9KhZ9hl1/7QNMyxXbc6ICqA= golang.org/x/mod v0.17.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= @@ -69,7 +69,7 @@ index ad3431ff35..33a7d4b8f6 100644 config := client.S3Conn(ctx).Config config.DisableRestProtocolURICleaning = aws_sdkv2.Bool(true) diff --git a/internal/provider/provider.go b/internal/provider/provider.go -index ef67582664..03965fe068 100644 +index 92763850ac..72fbd01d68 100644 --- a/internal/provider/provider.go +++ b/internal/provider/provider.go @@ -16,7 +16,6 @@ import ( @@ -180,27 +180,20 @@ index 0000000000..4278d1e70a + return conn, nil +} diff --git a/internal/service/s3legacy/bucket_legacy.go b/internal/service/s3legacy/bucket_legacy.go -index 007c2f2dc1..5f64a814be 100644 +index 575767763b..0cb47abf37 100644 --- a/internal/service/s3legacy/bucket_legacy.go +++ b/internal/service/s3legacy/bucket_legacy.go -@@ -31,7 +31,7 @@ import ( +@@ -31,6 +31,10 @@ import ( "github.com/hashicorp/terraform-provider-aws/internal/flex" tftags "github.com/hashicorp/terraform-provider-aws/internal/tags" "github.com/hashicorp/terraform-provider-aws/internal/tfresource" -- "github.com/hashicorp/terraform-provider-aws/internal/types" ++<<<<<<< HEAD ++======= + "github.com/hashicorp/terraform-provider-aws/internal/types/option" ++>>>>>>> 1f4e89fa7c (Restore legacy bucket) "github.com/hashicorp/terraform-provider-aws/internal/verify" ) -@@ -1393,7 +1393,7 @@ func resourceBucketLegacyRead(ctx context.Context, d *schema.ResourceData, meta - } - - if inContext, ok := tftags.FromContext(ctx); ok { -- inContext.TagsOut = types.Some(tags) -+ inContext.TagsOut = option.Some(tags) - } - - arn := arn.ARN{ diff --git a/internal/service/s3legacy/service_package.go b/internal/service/s3legacy/service_package.go new file mode 100644 index 0000000000..5d2ea27364 diff --git a/patches/0040-Allow-creating-lambdas-without-code-related-properti.patch b/patches/0032-Allow-creating-lambdas-without-code-related-properti.patch similarity index 100% rename from patches/0040-Allow-creating-lambdas-without-code-related-properti.patch rename to patches/0032-Allow-creating-lambdas-without-code-related-properti.patch diff --git a/patches/0032-DisableTagSchemaCheck-for-PF-provider.patch b/patches/0032-DisableTagSchemaCheck-for-PF-provider.patch deleted file mode 100644 index d438446910f..00000000000 --- a/patches/0032-DisableTagSchemaCheck-for-PF-provider.patch +++ /dev/null @@ -1,81 +0,0 @@ -From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 -From: Anton Tayanovskyy -Date: Wed, 6 Dec 2023 23:44:25 -0500 -Subject: [PATCH] DisableTagSchemaCheck for PF provider - - -diff --git a/internal/provider/fwprovider/provider.go b/internal/provider/fwprovider/provider.go -index c80c01b8d1..257f831fbb 100644 ---- a/internal/provider/fwprovider/provider.go -+++ b/internal/provider/fwprovider/provider.go -@@ -417,8 +417,7 @@ func (p *fwprovider) Resources(ctx context.Context) []func() resource.Resource { - if v.Tags != nil { - // The resource has opted in to transparent tagging. - // Ensure that the schema look OK. -- schemaResponse := resource.SchemaResponse{} -- inner.Schema(ctx, resource.SchemaRequest{}, &schemaResponse) -+ schemaResponse := schemaResponseForTagsChecking(ctx, inner) - - if v, ok := schemaResponse.Schema.Attributes[names.AttrTags]; ok { - if v.IsComputed() { -diff --git a/internal/provider/fwprovider/provider_tagscheck.go b/internal/provider/fwprovider/provider_tagscheck.go -new file mode 100644 -index 0000000000..f790acb4e2 ---- /dev/null -+++ b/internal/provider/fwprovider/provider_tagscheck.go -@@ -0,0 +1,43 @@ -+package fwprovider -+ -+import ( -+ "context" -+ -+ "github.com/hashicorp/terraform-plugin-framework/resource" -+ "github.com/hashicorp/terraform-plugin-framework/resource/schema" -+ -+ "github.com/hashicorp/terraform-provider-aws/names" -+) -+ -+type disableTagsSchemaCheckKey struct{} -+ -+func DisableTagSchemaCheck(ctx context.Context) context.Context { -+ return context.WithValue(ctx, disableTagsSchemaCheckKey{}, true) -+} -+ -+func schemaResponseForTagsChecking( -+ ctx context.Context, -+ r resource.ResourceWithConfigure, -+) *resource.SchemaResponse { -+ flag := ctx.Value(disableTagsSchemaCheckKey{}) -+ switch flag := flag.(type) { -+ case bool: -+ if flag { -+ return &resource.SchemaResponse{ -+ Schema: schema.Schema{ -+ Attributes: map[string]schema.Attribute{ -+ names.AttrTags: schema.MapAttribute{ -+ Computed: true, -+ }, -+ names.AttrTagsAll: schema.MapAttribute{ -+ Computed: false, -+ }, -+ }, -+ }, -+ } -+ } -+ } -+ var resp resource.SchemaResponse -+ r.Schema(ctx, resource.SchemaRequest{}, &resp) -+ return &resp -+} -diff --git a/shim/shim.go b/shim/shim.go -index 3378f955bb..b94f722d26 100644 ---- a/shim/shim.go -+++ b/shim/shim.go -@@ -17,6 +17,7 @@ type UpstreamProvider struct { - } - - func NewUpstreamProvider(ctx context.Context) (UpstreamProvider, error) { -+ ctx = fwprovider.DisableTagSchemaCheck(ctx) - primary, err := provider.New(provider.DisableTagSchemaCheck(ctx)) - if err != nil { - return UpstreamProvider{}, err diff --git a/patches/0033-Run-scripts-patch_computed_only.sh-to-patch-eks-pod_.patch b/patches/0033-Run-scripts-patch_computed_only.sh-to-patch-eks-pod_.patch deleted file mode 100644 index de1dfadfb15..00000000000 --- a/patches/0033-Run-scripts-patch_computed_only.sh-to-patch-eks-pod_.patch +++ /dev/null @@ -1,72 +0,0 @@ -From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 -From: Anton Tayanovskyy -Date: Thu, 7 Dec 2023 00:05:40 -0500 -Subject: [PATCH] Run scripts/patch_computed_only.sh to patch - eks/pod_identity_association and more - - -diff --git a/internal/service/docdbelastic/cluster.go b/internal/service/docdbelastic/cluster.go -index e4c13754ab..cb4258a1e8 100644 ---- a/internal/service/docdbelastic/cluster.go -+++ b/internal/service/docdbelastic/cluster.go -@@ -127,7 +127,7 @@ func (r *resourceCluster) Schema(ctx context.Context, _ resource.SchemaRequest, - }, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - names.AttrVPCSecurityGroupIDs: schema.SetAttribute{ - ElementType: types.StringType, - Optional: true, -diff --git a/internal/service/eks/pod_identity_association.go b/internal/service/eks/pod_identity_association.go -index f0a2548c2b..5127cda786 100644 ---- a/internal/service/eks/pod_identity_association.go -+++ b/internal/service/eks/pod_identity_association.go -@@ -105,7 +105,7 @@ func (r *podIdentityAssociationResource) Schema(ctx context.Context, req resourc - }, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - }, - } - } -diff --git a/internal/service/s3control/access_grant.go b/internal/service/s3control/access_grant.go -index 1b74019099..6a3a6e512d 100644 ---- a/internal/service/s3control/access_grant.go -+++ b/internal/service/s3control/access_grant.go -@@ -103,7 +103,7 @@ func (r *accessGrantResource) Schema(ctx context.Context, request resource.Schem - }, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - }, - Blocks: map[string]schema.Block{ - "access_grants_location_configuration": schema.ListNestedBlock{ -diff --git a/internal/service/s3control/access_grants_instance.go b/internal/service/s3control/access_grants_instance.go -index 7fca401a6e..b4cc558fa4 100644 ---- a/internal/service/s3control/access_grants_instance.go -+++ b/internal/service/s3control/access_grants_instance.go -@@ -82,7 +82,7 @@ func (r *accessGrantsInstanceResource) Schema(ctx context.Context, request resou - Optional: true, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - }, - } - } -diff --git a/internal/service/s3control/access_grants_location.go b/internal/service/s3control/access_grants_location.go -index 1e52ad62a3..1056b0c429 100644 ---- a/internal/service/s3control/access_grants_location.go -+++ b/internal/service/s3control/access_grants_location.go -@@ -84,7 +84,7 @@ func (r *accessGrantsLocationResource) Schema(ctx context.Context, request resou - }, - names.AttrID: framework.IDAttribute(), - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - }, - } - } diff --git a/patches/0042-fix-legacy-bucket-context.patch b/patches/0033-fix-legacy-bucket-context.patch similarity index 55% rename from patches/0042-fix-legacy-bucket-context.patch rename to patches/0033-fix-legacy-bucket-context.patch index 5ff3c3aa525..bf2ced39a8f 100644 --- a/patches/0042-fix-legacy-bucket-context.patch +++ b/patches/0033-fix-legacy-bucket-context.patch @@ -5,10 +5,30 @@ Subject: [PATCH] fix legacy bucket context diff --git a/internal/service/s3legacy/bucket_legacy.go b/internal/service/s3legacy/bucket_legacy.go -index 5f64a814be..d5c03b22fb 100644 +index 0cb47abf37..ef32f52250 100644 --- a/internal/service/s3legacy/bucket_legacy.go +++ b/internal/service/s3legacy/bucket_legacy.go -@@ -904,7 +904,7 @@ func resourceBucketLegacyRead(ctx context.Context, d *schema.ResourceData, meta +@@ -31,10 +31,6 @@ import ( + "github.com/hashicorp/terraform-provider-aws/internal/flex" + tftags "github.com/hashicorp/terraform-provider-aws/internal/tags" + "github.com/hashicorp/terraform-provider-aws/internal/tfresource" +-<<<<<<< HEAD +-======= +- "github.com/hashicorp/terraform-provider-aws/internal/types/option" +->>>>>>> 1f4e89fa7c (Restore legacy bucket) + "github.com/hashicorp/terraform-provider-aws/internal/verify" + ) + +@@ -669,7 +665,7 @@ func ResourceBucketLegacy() *schema.Resource { + }, + + "tags": tftags.TagsSchema(), +- "tags_all": tftags.TagsSchemaTrulyComputed(), ++ "tags_all": tftags.TagsSchemaComputed(), + }, + + CustomizeDiff: verify.SetTagsDiff, +@@ -909,7 +905,7 @@ func resourceBucketLegacyRead(ctx context.Context, d *schema.ResourceData, meta d.Set("bucket", d.Id()) } @@ -17,7 +37,7 @@ index 5f64a814be..d5c03b22fb 100644 // Read the policy if _, ok := d.GetOk("policy"); ok { -@@ -1803,7 +1803,7 @@ func websiteLegacyDomainUrl(client *conns.AWSClient, region string) string { +@@ -1815,7 +1811,7 @@ func websiteLegacyDomainUrl(client *conns.AWSClient, region string) string { if isOldRegionLegacy(region) { return fmt.Sprintf("s3-website-%s.amazonaws.com", region) //lintignore:AWSR001 } diff --git a/patches/0045-restore-ECRConn.patch b/patches/0034-restore-ECRConn.patch similarity index 90% rename from patches/0045-restore-ECRConn.patch rename to patches/0034-restore-ECRConn.patch index 52f201c006a..ec8053a7861 100644 --- a/patches/0045-restore-ECRConn.patch +++ b/patches/0034-restore-ECRConn.patch @@ -5,10 +5,10 @@ Subject: [PATCH] restore ECRConn diff --git a/internal/conns/awsclient_gen.go b/internal/conns/awsclient_gen.go -index 376b5d52b1..d8d7b71f2c 100644 +index 0a7c294203..2bd46def60 100644 --- a/internal/conns/awsclient_gen.go +++ b/internal/conns/awsclient_gen.go -@@ -201,6 +201,7 @@ import ( +@@ -207,6 +207,7 @@ import ( directconnect_sdkv1 "github.com/aws/aws-sdk-go/service/directconnect" directoryservice_sdkv1 "github.com/aws/aws-sdk-go/service/directoryservice" ec2_sdkv1 "github.com/aws/aws-sdk-go/service/ec2" @@ -16,7 +16,7 @@ index 376b5d52b1..d8d7b71f2c 100644 ecs_sdkv1 "github.com/aws/aws-sdk-go/service/ecs" efs_sdkv1 "github.com/aws/aws-sdk-go/service/efs" elasticache_sdkv1 "github.com/aws/aws-sdk-go/service/elasticache" -@@ -597,6 +598,10 @@ func (c *AWSClient) EC2Client(ctx context.Context) *ec2_sdkv2.Client { +@@ -602,6 +603,10 @@ func (c *AWSClient) EC2Client(ctx context.Context) *ec2_sdkv2.Client { return errs.Must(client[*ec2_sdkv2.Client](ctx, c, names.EC2, make(map[string]any))) } diff --git a/patches/0035-Fix-tags_all-Computed-for-PF-resources.patch b/patches/0035-Fix-tags_all-Computed-for-PF-resources.patch deleted file mode 100644 index c324eca226c..00000000000 --- a/patches/0035-Fix-tags_all-Computed-for-PF-resources.patch +++ /dev/null @@ -1,136 +0,0 @@ -From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 -From: Anton Tayanovskyy -Date: Wed, 7 Feb 2024 12:24:44 -0500 -Subject: [PATCH] Fix tags_all Computed for PF resources - - -diff --git a/internal/service/amp/scraper.go b/internal/service/amp/scraper.go -index 7af155285d..1d4ecd0a99 100644 ---- a/internal/service/amp/scraper.go -+++ b/internal/service/amp/scraper.go -@@ -84,7 +84,7 @@ func (r *scraperResource) Schema(ctx context.Context, req resource.SchemaRequest - }, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - }, - Blocks: map[string]schema.Block{ - names.AttrDestination: schema.ListNestedBlock{ -diff --git a/internal/service/bedrock/custom_model.go b/internal/service/bedrock/custom_model.go -index b7de5503dc..6baae17c0d 100644 ---- a/internal/service/bedrock/custom_model.go -+++ b/internal/service/bedrock/custom_model.go -@@ -137,7 +137,7 @@ func (r *customModelResource) Schema(ctx context.Context, request resource.Schem - }, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - "training_metrics": schema.ListAttribute{ - CustomType: fwtypes.NewListNestedObjectTypeOf[customModelTrainingMetricsModel](ctx), - Computed: true, -diff --git a/internal/service/codeguruprofiler/profiling_group.go b/internal/service/codeguruprofiler/profiling_group.go -index 9b0e8fb993..9ec78ba066 100644 ---- a/internal/service/codeguruprofiler/profiling_group.go -+++ b/internal/service/codeguruprofiler/profiling_group.go -@@ -73,7 +73,7 @@ func (r *resourceProfilingGroup) Schema(ctx context.Context, req resource.Schema - }, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - }, - Blocks: map[string]schema.Block{ - "agent_orchestration_config": schema.ListNestedBlock{ -diff --git a/internal/service/elasticache/serverless_cache.go b/internal/service/elasticache/serverless_cache.go -index 5de88df811..ac8533f703 100644 ---- a/internal/service/elasticache/serverless_cache.go -+++ b/internal/service/elasticache/serverless_cache.go -@@ -176,7 +176,7 @@ func (r *serverlessCacheResource) Schema(ctx context.Context, request resource.S - }, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - "user_group_id": schema.StringAttribute{ - Optional: true, - }, -diff --git a/internal/service/rekognition/collection.go b/internal/service/rekognition/collection.go -index 0c1741f00e..7e1945e19a 100644 ---- a/internal/service/rekognition/collection.go -+++ b/internal/service/rekognition/collection.go -@@ -77,7 +77,7 @@ func (r *resourceCollection) Schema(ctx context.Context, req resource.SchemaRequ - }, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - }, - } - -diff --git a/internal/service/securityhub/automation_rule.go b/internal/service/securityhub/automation_rule.go -index 69d6b912ac..6323d7c399 100644 ---- a/internal/service/securityhub/automation_rule.go -+++ b/internal/service/securityhub/automation_rule.go -@@ -75,7 +75,7 @@ func (r *automationRuleResource) Schema(ctx context.Context, request resource.Sc - }, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - }, - Blocks: map[string]schema.Block{ - names.AttrActions: schema.SetNestedBlock{ -diff --git a/internal/service/securitylake/data_lake.go b/internal/service/securitylake/data_lake.go -index 9ff71fe5d7..faba601773 100644 ---- a/internal/service/securitylake/data_lake.go -+++ b/internal/service/securitylake/data_lake.go -@@ -75,7 +75,7 @@ func (r *dataLakeResource) Schema(ctx context.Context, request resource.SchemaRe - }, - "s3_bucket_arn": framework.ARNAttributeComputedOnly(), - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - }, - Blocks: map[string]schema.Block{ - names.AttrConfiguration: schema.ListNestedBlock{ -diff --git a/internal/service/ssmcontacts/rotation.go b/internal/service/ssmcontacts/rotation.go -index b3e48d3f85..e0357dbfd6 100644 ---- a/internal/service/ssmcontacts/rotation.go -+++ b/internal/service/ssmcontacts/rotation.go -@@ -70,7 +70,7 @@ func (r *resourceRotation) Schema(ctx context.Context, request resource.SchemaRe - Optional: true, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - "time_zone_id": schema.StringAttribute{ - Required: true, - }, -diff --git a/internal/service/ssoadmin/application.go b/internal/service/ssoadmin/application.go -index 0312e9def5..b409c3cd34 100644 ---- a/internal/service/ssoadmin/application.go -+++ b/internal/service/ssoadmin/application.go -@@ -96,7 +96,7 @@ func (r *resourceApplication) Schema(ctx context.Context, req resource.SchemaReq - }, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - }, - Blocks: map[string]schema.Block{ - "portal_options": schema.ListNestedBlock{ -diff --git a/internal/service/ssoadmin/trusted_token_issuer.go b/internal/service/ssoadmin/trusted_token_issuer.go -index e0e72b63f8..f61a6263c3 100644 ---- a/internal/service/ssoadmin/trusted_token_issuer.go -+++ b/internal/service/ssoadmin/trusted_token_issuer.go -@@ -86,7 +86,7 @@ func (r *resourceTrustedTokenIssuer) Schema(ctx context.Context, req resource.Sc - }, - - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - }, - Blocks: map[string]schema.Block{ - "trusted_token_issuer_configuration": schema.ListNestedBlock{ diff --git a/patches/0046-update-testing-types.patch b/patches/0035-update-testing-types.patch similarity index 100% rename from patches/0046-update-testing-types.patch rename to patches/0035-update-testing-types.patch diff --git a/patches/0047-restore-ecr-NewConn.patch b/patches/0036-restore-ecr-NewConn.patch similarity index 100% rename from patches/0047-restore-ecr-NewConn.patch rename to patches/0036-restore-ecr-NewConn.patch diff --git a/patches/0048-update-apn-info.patch b/patches/0037-update-apn-info.patch similarity index 100% rename from patches/0048-update-apn-info.patch rename to patches/0037-update-apn-info.patch diff --git a/patches/0049-non-idempotent-sns-topic-creation.patch b/patches/0038-non-idempotent-sns-topic-creation.patch similarity index 100% rename from patches/0049-non-idempotent-sns-topic-creation.patch rename to patches/0038-non-idempotent-sns-topic-creation.patch diff --git a/patches/0050-Normalize-retentionDays-in-aws_controltower_landing_.patch b/patches/0039-Normalize-retentionDays-in-aws_controltower_landing_.patch similarity index 100% rename from patches/0050-Normalize-retentionDays-in-aws_controltower_landing_.patch rename to patches/0039-Normalize-retentionDays-in-aws_controltower_landing_.patch diff --git a/patches/0039-Patch-osis_pipeline-tags-flags.patch b/patches/0039-Patch-osis_pipeline-tags-flags.patch deleted file mode 100644 index 126af272add..00000000000 --- a/patches/0039-Patch-osis_pipeline-tags-flags.patch +++ /dev/null @@ -1,19 +0,0 @@ -From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 -From: Anton Tayanovskyy -Date: Fri, 9 Feb 2024 14:39:32 -0500 -Subject: [PATCH] Patch osis_pipeline tags flags - - -diff --git a/internal/service/osis/pipeline.go b/internal/service/osis/pipeline.go -index 96f9722fca..fc44162dfb 100644 ---- a/internal/service/osis/pipeline.go -+++ b/internal/service/osis/pipeline.go -@@ -100,7 +100,7 @@ func (r *pipelineResource) Schema(ctx context.Context, request resource.SchemaRe - }, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - }, - Blocks: map[string]schema.Block{ - "buffer_options": schema.ListNestedBlock{ diff --git a/patches/0051-Revert-r-aws_db_proxy-Change-auth-from-TypeList-to-T.patch b/patches/0040-Revert-r-aws_db_proxy-Change-auth-from-TypeList-to-T.patch similarity index 100% rename from patches/0051-Revert-r-aws_db_proxy-Change-auth-from-TypeList-to-T.patch rename to patches/0040-Revert-r-aws_db_proxy-Change-auth-from-TypeList-to-T.patch diff --git a/patches/0041-Do-not-Compute-tags_all-of-aws_bedrock_provisioned_m.patch b/patches/0041-Do-not-Compute-tags_all-of-aws_bedrock_provisioned_m.patch deleted file mode 100644 index a6b6aec00a8..00000000000 --- a/patches/0041-Do-not-Compute-tags_all-of-aws_bedrock_provisioned_m.patch +++ /dev/null @@ -1,20 +0,0 @@ -From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 -From: guineveresaenger -Date: Wed, 21 Feb 2024 14:46:27 -0800 -Subject: [PATCH] Do not Compute tags_all of - aws_bedrock_provisioned_model_throughput - - -diff --git a/internal/service/bedrock/provisioned_model_throughput.go b/internal/service/bedrock/provisioned_model_throughput.go -index 9dbc65efef..666f31194a 100644 ---- a/internal/service/bedrock/provisioned_model_throughput.go -+++ b/internal/service/bedrock/provisioned_model_throughput.go -@@ -85,7 +85,7 @@ func (r *resourceProvisionedModelThroughput) Schema(ctx context.Context, request - }, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - }, - Blocks: map[string]schema.Block{ - names.AttrTimeouts: timeouts.Block(ctx, timeouts.Opts{ diff --git a/patches/0052-Fix-panic-in-aws_directory_service_directory-Read.patch b/patches/0041-Fix-panic-in-aws_directory_service_directory-Read.patch similarity index 100% rename from patches/0052-Fix-panic-in-aws_directory_service_directory-Read.patch rename to patches/0041-Fix-panic-in-aws_directory_service_directory-Read.patch diff --git a/patches/0054-Fix-empty-retry_strategy-of-Batch-JobDefinitions-cau.patch b/patches/0042-Fix-empty-retry_strategy-of-Batch-JobDefinitions-cau.patch similarity index 100% rename from patches/0054-Fix-empty-retry_strategy-of-Batch-JobDefinitions-cau.patch rename to patches/0042-Fix-empty-retry_strategy-of-Batch-JobDefinitions-cau.patch diff --git a/patches/0056-Parallelize-Lambda-Function-resource-operations.patch b/patches/0043-Parallelize-Lambda-Function-resource-operations.patch similarity index 100% rename from patches/0056-Parallelize-Lambda-Function-resource-operations.patch rename to patches/0043-Parallelize-Lambda-Function-resource-operations.patch diff --git a/patches/0043-securitylake_subscriber-tags_all-patch.patch b/patches/0043-securitylake_subscriber-tags_all-patch.patch deleted file mode 100644 index 89d1352b622..00000000000 --- a/patches/0043-securitylake_subscriber-tags_all-patch.patch +++ /dev/null @@ -1,19 +0,0 @@ -From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 -From: Anton Tayanovskyy -Date: Tue, 12 Mar 2024 18:05:28 -0400 -Subject: [PATCH] securitylake_subscriber tags_all patch - - -diff --git a/internal/service/securitylake/subscriber.go b/internal/service/securitylake/subscriber.go -index d2d4454d1a..7f46224dc2 100644 ---- a/internal/service/securitylake/subscriber.go -+++ b/internal/service/securitylake/subscriber.go -@@ -99,7 +99,7 @@ func (r *subscriberResource) Schema(ctx context.Context, request resource.Schema - }, - names.AttrID: framework.IDAttribute(), - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - }, - Blocks: map[string]schema.Block{ - names.AttrSource: schema.SetNestedBlock{ diff --git a/patches/0057-Create-Logging-Middleware-for-Lambda-service-that-do.patch b/patches/0044-Create-Logging-Middleware-for-Lambda-service-that-do.patch similarity index 100% rename from patches/0057-Create-Logging-Middleware-for-Lambda-service-that-do.patch rename to patches/0044-Create-Logging-Middleware-for-Lambda-service-that-do.patch diff --git a/patches/0044-Patch-tags-ComputedOnly-for-m2-resources.patch b/patches/0044-Patch-tags-ComputedOnly-for-m2-resources.patch deleted file mode 100644 index 8b115c5925b..00000000000 --- a/patches/0044-Patch-tags-ComputedOnly-for-m2-resources.patch +++ /dev/null @@ -1,32 +0,0 @@ -From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 -From: Anton Tayanovskyy -Date: Mon, 1 Apr 2024 17:25:06 -0400 -Subject: [PATCH] Patch tags ComputedOnly for m2 resources - - -diff --git a/internal/service/m2/application.go b/internal/service/m2/application.go -index 48e32e3a3e..5f4eb3e856 100644 ---- a/internal/service/m2/application.go -+++ b/internal/service/m2/application.go -@@ -104,7 +104,7 @@ func (r *applicationResource) Schema(ctx context.Context, request resource.Schem - }, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - }, - Blocks: map[string]schema.Block{ - "definition": schema.ListNestedBlock{ -diff --git a/internal/service/m2/environment.go b/internal/service/m2/environment.go -index 8d7b5d9ccd..ea3de1ce1b 100644 ---- a/internal/service/m2/environment.go -+++ b/internal/service/m2/environment.go -@@ -174,7 +174,7 @@ func (r *environmentResource) Schema(ctx context.Context, request resource.Schem - }, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - }, - Blocks: map[string]schema.Block{ - "high_availability_config": schema.ListNestedBlock{ diff --git a/patches/0061-Normalize-ecs.TaskDefinition-containerDefinitions-he.patch b/patches/0045-Normalize-ecs.TaskDefinition-containerDefinitions-he.patch similarity index 100% rename from patches/0061-Normalize-ecs.TaskDefinition-containerDefinitions-he.patch rename to patches/0045-Normalize-ecs.TaskDefinition-containerDefinitions-he.patch diff --git a/patches/0046-Upgrade-s3legacy-tagging.patch b/patches/0046-Upgrade-s3legacy-tagging.patch new file mode 100644 index 00000000000..6278b95f93a --- /dev/null +++ b/patches/0046-Upgrade-s3legacy-tagging.patch @@ -0,0 +1,470 @@ +From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 +From: corymhall <43035978+corymhall@users.noreply.github.com> +Date: Fri, 12 Jul 2024 10:39:40 -0400 +Subject: [PATCH] Upgrade s3legacy tagging + +This upgrades the s3legacy tagging implementation to match the s3 +implementation. This fixes a bunch of issues with `tags` & `tagsAll` + +diff --git a/internal/service/s3legacy/bucket_legacy.go b/internal/service/s3legacy/bucket_legacy.go +index ef32f52250..0d0a2de7e1 100644 +--- a/internal/service/s3legacy/bucket_legacy.go ++++ b/internal/service/s3legacy/bucket_legacy.go +@@ -742,25 +742,16 @@ func resourceBucketLegacyCreate(ctx context.Context, d *schema.ResourceData, met + + // Assign the bucket name as the resource ID + d.SetId(bucket) ++ if err := bucketCreateTags(ctx, conn, d.Id(), getTagsIn(ctx)); err != nil { ++ return diag.Errorf("setting S3 Bucket (%s) tags: %s", d.Id(), err) ++ } ++ + return resourceBucketLegacyUpdate(ctx, d, meta) + } + + func resourceBucketLegacyUpdate(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics { + conn := meta.(*conns.AWSClient).S3Conn(ctx) + +- if d.HasChange("tags_all") { +- o, n := d.GetChange("tags_all") +- +- // Retry due to S3 eventual consistency +- _, err := retryOnAWSCode(s3.ErrCodeNoSuchBucket, func() (interface{}, error) { +- terr := BucketUpdateTags(conn, d.Id(), o, n) +- return nil, terr +- }) +- if err != nil { +- return diag.Errorf("error updating S3 Bucket (%s) tags: %s", d.Id(), err) +- } +- } +- + if d.HasChange("policy") { + if err := resourceBucketLegacyPolicyUpdate(ctx, conn, d); err != nil { + return err +@@ -815,7 +806,7 @@ func resourceBucketLegacyUpdate(ctx context.Context, d *schema.ResourceData, met + } + + if d.HasChange("lifecycle_rule") { +- if err := resourceBucketLegacyLifecycleUpdate(conn, d); err != nil { ++ if err := resourceBucketLegacyLifecycleUpdate(ctx, conn, d); err != nil { + return diag.FromErr(err) + } + } +@@ -833,7 +824,7 @@ func resourceBucketLegacyUpdate(ctx context.Context, d *schema.ResourceData, met + } + + if d.HasChange("replication_configuration") { +- if err := resourceBucketLegacyInternalReplicationConfigurationUpdate(conn, d); err != nil { ++ if err := resourceBucketLegacyInternalReplicationConfigurationUpdate(ctx, conn, d); err != nil { + return diag.FromErr(err) + } + } +@@ -855,8 +846,6 @@ func resourceBucketLegacyUpdate(ctx context.Context, d *schema.ResourceData, met + + func resourceBucketLegacyRead(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics { + conn := meta.(*conns.AWSClient).S3Conn(ctx) +- defaultTagsConfig := meta.(*conns.AWSClient).DefaultTagsConfig +- ignoreTagsConfig := meta.(*conns.AWSClient).IgnoreTagsConfig + + input := &s3.HeadBucketInput{ + Bucket: aws.String(d.Id()), +@@ -1171,7 +1160,7 @@ func resourceBucketLegacyRead(ctx context.Context, d *schema.ResourceData, meta + } + // Tag + if len(filter.And.Tags) > 0 { +- rule["tags"] = KeyValueTags(filter.And.Tags).IgnoreAWS().Map() ++ rule["tags"] = keyValueTags(ctx, filter.And.Tags).IgnoreAWS().Map() + } + } else { + // Prefix +@@ -1180,7 +1169,7 @@ func resourceBucketLegacyRead(ctx context.Context, d *schema.ResourceData, meta + } + // Tag + if filter.Tag != nil { +- rule["tags"] = KeyValueTags([]*s3.Tag{filter.Tag}).IgnoreAWS().Map() ++ rule["tags"] = keyValueTags(ctx, []*s3.Tag{filter.Tag}).IgnoreAWS().Map() + } + } + } else { +@@ -1281,7 +1270,7 @@ func resourceBucketLegacyRead(ctx context.Context, d *schema.ResourceData, meta + + replicationConfiguration := make([]map[string]interface{}, 0) + if replication, ok := replicationResponse.(*s3.GetBucketReplicationOutput); ok { +- replicationConfiguration = flattenBucketReplicationConfigurationLegacy(replication.ReplicationConfiguration) ++ replicationConfiguration = flattenBucketReplicationConfigurationLegacy(ctx, replication.ReplicationConfiguration) + } + if err := d.Set("replication_configuration", replicationConfiguration); err != nil { + return diag.Errorf("error setting replication_configuration: %s", err) +@@ -1378,32 +1367,6 @@ func resourceBucketLegacyRead(ctx context.Context, d *schema.ResourceData, meta + } + } + +- // Retry due to S3 eventual consistency +- tagsRaw, err := retryOnAWSCode(s3.ErrCodeNoSuchBucket, func() (interface{}, error) { +- return BucketListTags(conn, d.Id()) +- }) +- +- if err != nil { +- return diag.Errorf("error listing tags for S3 Bucket (%s): %s", d.Id(), err) +- } +- +- tags, ok := tagsRaw.(tftags.KeyValueTags) +- +- if !ok { +- return diag.Errorf("error listing tags for S3 Bucket (%s): unable to convert tags", d.Id()) +- } +- +- tags = tags.IgnoreAWS().IgnoreConfig(ignoreTagsConfig) +- +- //lintignore:AWSR002 +- if err := d.Set("tags", tags.RemoveDefaultConfig(defaultTagsConfig).Map()); err != nil { +- return diag.Errorf("error setting tags: %w", err) +- } +- +- if err := d.Set("tags_all", tags.Map()); err != nil { +- return diag.Errorf("error setting tags_all: %w", err) +- } +- + arn := arn.ARN{ + Partition: meta.(*conns.AWSClient).Partition, + Service: "s3", +@@ -2035,7 +1998,7 @@ func resourceBucketLegacyObjectLockConfigurationUpdate(conn *s3.S3, d *schema.Re + return nil + } + +-func resourceBucketLegacyInternalReplicationConfigurationUpdate(conn *s3.S3, d *schema.ResourceData) error { ++func resourceBucketLegacyInternalReplicationConfigurationUpdate(ctx context.Context, conn *s3.S3, d *schema.ResourceData) error { + bucket := d.Get("bucket").(string) + replicationConfiguration := d.Get("replication_configuration").([]interface{}) + +@@ -2162,7 +2125,7 @@ func resourceBucketLegacyInternalReplicationConfigurationUpdate(conn *s3.S3, d * + rcRule.Priority = aws.Int64(int64(rr["priority"].(int))) + rcRule.Filter = &s3.ReplicationRuleFilter{} + filter := f[0].(map[string]interface{}) +- tags := Tags(tftags.New(context.Background(), filter["tags"]).IgnoreAWS()) ++ tags := Tags(tftags.New(ctx, filter["tags"]).IgnoreAWS()) + if len(tags) > 0 { + rcRule.Filter.And = &s3.ReplicationRuleAndOperator{ + Prefix: aws.String(filter["prefix"].(string)), +@@ -2216,7 +2179,7 @@ func resourceBucketLegacyInternalReplicationConfigurationUpdate(conn *s3.S3, d * + return nil + } + +-func resourceBucketLegacyLifecycleUpdate(conn *s3.S3, d *schema.ResourceData) error { ++func resourceBucketLegacyLifecycleUpdate(ctx context.Context, conn *s3.S3, d *schema.ResourceData) error { + bucket := d.Get("bucket").(string) + + lifecycleRules := d.Get("lifecycle_rule").([]interface{}) +@@ -2241,7 +2204,7 @@ func resourceBucketLegacyLifecycleUpdate(conn *s3.S3, d *schema.ResourceData) er + rule := &s3.LifecycleRule{} + + // Filter +- tags := Tags(tftags.New(context.Background(), r["tags"]).IgnoreAWS()) ++ tags := Tags(tftags.New(ctx, r["tags"]).IgnoreAWS()) + filter := &s3.LifecycleRuleFilter{} + if len(tags) > 0 { + lifecycleRuleAndOp := &s3.LifecycleRuleAndOperator{} +@@ -2395,7 +2358,7 @@ func flattenServerSideEncryptionConfigurationLegacy(c *s3.ServerSideEncryptionCo + return encryptionConfiguration + } + +-func flattenBucketReplicationConfigurationLegacy(r *s3.ReplicationConfiguration) []map[string]interface{} { ++func flattenBucketReplicationConfigurationLegacy(ctx context.Context, r *s3.ReplicationConfiguration) []map[string]interface{} { + replication_configuration := make([]map[string]interface{}, 0, 1) + + if r == nil { +@@ -2485,11 +2448,11 @@ func flattenBucketReplicationConfigurationLegacy(r *s3.ReplicationConfiguration) + m["prefix"] = aws.StringValue(f.Prefix) + } + if t := f.Tag; t != nil { +- m["tags"] = KeyValueTags([]*s3.Tag{t}).IgnoreAWS().Map() ++ m["tags"] = keyValueTags(ctx, []*s3.Tag{t}).IgnoreAWS().Map() + } + if a := f.And; a != nil { + m["prefix"] = aws.StringValue(a.Prefix) +- m["tags"] = KeyValueTags(a.Tags).IgnoreAWS().Map() ++ m["tags"] = keyValueTags(ctx, a.Tags).IgnoreAWS().Map() + } + t["filter"] = []interface{}{m} + +diff --git a/internal/service/s3legacy/object_arn.go b/internal/service/s3legacy/object_arn.go +new file mode 100644 +index 0000000000..30e811d65b +--- /dev/null ++++ b/internal/service/s3legacy/object_arn.go +@@ -0,0 +1,64 @@ ++// Copyright (c) HashiCorp, Inc. ++// SPDX-License-Identifier: MPL-2.0 ++ ++package s3legacy ++ ++import ( ++ "fmt" ++ "strings" ++ ++ "github.com/YakDriver/regexache" ++ "github.com/aws/aws-sdk-go-v2/aws/arn" ++) ++ ++func newObjectARN(partition string, bucket, key string) (arn.ARN, error) { ++ if arn.IsARN(bucket) { ++ bucketARN, err := arn.Parse(bucket) ++ if err != nil { ++ return arn.ARN{}, fmt.Errorf("S3 Object ARN: unexpected bucket ARN: %s", bucket) ++ } ++ bucketARN.Resource = fmt.Sprintf("%s/%s", bucketARN.Resource, key) ++ return bucketARN, nil ++ } ++ return arn.ARN{ ++ Partition: partition, ++ Service: "s3", ++ Resource: fmt.Sprintf("%s/%s", bucket, key), ++ }, nil ++} ++ ++type objectARN struct { ++ arn.ARN ++ Bucket string ++ Key string ++} ++ ++func parseObjectARN(s string) (objectARN, error) { ++ arn, err := arn.Parse(s) ++ if err != nil { ++ return objectARN{}, err ++ } ++ ++ result := objectARN{ ++ ARN: arn, ++ } ++ ++ if strings.HasPrefix(arn.Resource, "accesspoint/") { ++ re := regexache.MustCompile(`^(arn:[^:]+:[^:]+:[^:]*:[^:]*:accesspoint/[^/]+)/(.+)$`) ++ m := re.FindStringSubmatch(s) ++ if len(m) == 3 { ++ result.Bucket = m[1] ++ result.Key = m[2] ++ return result, nil ++ } ++ } ++ ++ parts := strings.SplitN(arn.Resource, "/", 2) ++ if len(parts) != 2 { ++ return objectARN{}, fmt.Errorf("S3 Object ARN: unexpected resource section: %s", arn.Resource) ++ } ++ result.Bucket = parts[0] ++ result.Key = parts[1] ++ ++ return result, nil ++} +diff --git a/internal/service/s3legacy/tags.go b/internal/service/s3legacy/tags.go +index 669813747b..1ae5d31710 100644 +--- a/internal/service/s3legacy/tags.go ++++ b/internal/service/s3legacy/tags.go +@@ -13,19 +13,29 @@ import ( + "github.com/aws/aws-sdk-go/service/s3" + "github.com/hashicorp/aws-sdk-go-base/tfawserr" + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/retry" ++ "github.com/hashicorp/terraform-provider-aws/internal/conns" + tftags "github.com/hashicorp/terraform-provider-aws/internal/tags" + "github.com/hashicorp/terraform-provider-aws/internal/tfresource" ++ "github.com/hashicorp/terraform-provider-aws/internal/types/option" + ) + + const ( + ErrCodeNoSuchTagSet = "NoSuchTagSet" + ) + ++// Custom S3 tag service update functions using the same format as generated code. ++func bucketCreateTags(ctx context.Context, conn *s3.S3, identifier string, tags []*s3.Tag) error { ++ if len(tags) == 0 { ++ return nil ++ } ++ return bucketUpdateTags(ctx, conn, identifier, nil, keyValueTags(ctx, tags)) ++} ++ + // Custom S3 tag service update functions using the same format as generated code. + + // BucketListTags lists S3 bucket tags. + // The identifier is the bucket name. +-func BucketListTags(conn *s3.S3, identifier string) (tftags.KeyValueTags, error) { ++func bucketListTags(ctx context.Context, conn *s3.S3, identifier string) (tftags.KeyValueTags, error) { + input := &s3.GetBucketTaggingInput{ + Bucket: aws.String(identifier), + } +@@ -36,24 +46,24 @@ func BucketListTags(conn *s3.S3, identifier string) (tftags.KeyValueTags, error) + // lists the special error as NoSuchTagSetError, however the existing logic used NoSuchTagSet + // and the AWS Go SDK has neither as a constant. + if tfawserr.ErrCodeEquals(err, ErrCodeNoSuchTagSet) { +- return tftags.New(context.Background(), nil), nil ++ return tftags.New(ctx, nil), nil + } + + if err != nil { +- return tftags.New(context.Background(), nil), err ++ return tftags.New(ctx, nil), err + } + +- return KeyValueTags(output.TagSet), nil ++ return keyValueTags(ctx, output.TagSet), nil + } + + // BucketUpdateTags updates S3 bucket tags. + // The identifier is the bucket name. +-func BucketUpdateTags(conn *s3.S3, identifier string, oldTagsMap interface{}, newTagsMap interface{}) error { +- oldTags := tftags.New(context.Background(), oldTagsMap) +- newTags := tftags.New(context.Background(), newTagsMap) ++func bucketUpdateTags(ctx context.Context, conn *s3.S3, identifier string, oldTagsMap interface{}, newTagsMap interface{}) error { ++ oldTags := tftags.New(ctx, oldTagsMap) ++ newTags := tftags.New(ctx, newTagsMap) + + // We need to also consider any existing ignored tags. +- allTags, err := BucketListTags(conn, identifier) ++ allTags, err := bucketListTags(ctx, conn, identifier) + + if err != nil { + return fmt.Errorf("error listing resource tags (%s): %w", identifier, err) +@@ -90,7 +100,7 @@ func BucketUpdateTags(conn *s3.S3, identifier string, oldTagsMap interface{}, ne + } + + // ObjectListTags lists S3 object tags. +-func ObjectListTags(conn *s3.S3, bucket, key string) (tftags.KeyValueTags, error) { ++func objectListTags(ctx context.Context, conn *s3.S3, bucket, key string) (tftags.KeyValueTags, error) { + input := &s3.GetObjectTaggingInput{ + Bucket: aws.String(bucket), + Key: aws.String(key), +@@ -119,23 +129,23 @@ func ObjectListTags(conn *s3.S3, bucket, key string) (tftags.KeyValueTags, error + } + + if tfawserr.ErrCodeEquals(err, ErrCodeNoSuchTagSet) { +- return tftags.New(context.Background(), nil), nil ++ return tftags.New(ctx, nil), nil + } + + if err != nil { +- return tftags.New(context.Background(), nil), err ++ return tftags.New(ctx, nil), err + } + +- return KeyValueTags(output.TagSet), nil ++ return keyValueTags(ctx, output.TagSet), nil + } + + // ObjectUpdateTags updates S3 object tags. +-func ObjectUpdateTags(conn *s3.S3, bucket, key string, oldTagsMap interface{}, newTagsMap interface{}) error { +- oldTags := tftags.New(context.Background(), oldTagsMap) +- newTags := tftags.New(context.Background(), newTagsMap) ++func objectUpdateTags(ctx context.Context, conn *s3.S3, bucket, key string, oldTagsMap interface{}, newTagsMap interface{}) error { ++ oldTags := tftags.New(ctx, oldTagsMap) ++ newTags := tftags.New(ctx, newTagsMap) + + // We need to also consider any existing ignored tags. +- allTags, err := ObjectListTags(conn, bucket, key) ++ allTags, err := objectListTags(ctx, conn, bucket, key) + + if err != nil { + return fmt.Errorf("error listing resource tags (%s/%s): %w", bucket, key, err) +@@ -172,3 +182,56 @@ func ObjectUpdateTags(conn *s3.S3, bucket, key string, oldTagsMap interface{}, n + + return nil + } ++ ++// ListTags lists s3 service tags and set them in Context. ++// It is called from outside this package. ++func (p *servicePackage) ListTags(ctx context.Context, meta any, identifier, resourceType string) error { ++ var ( ++ tags tftags.KeyValueTags ++ err error ++ ) ++ switch resourceType { ++ case "Bucket": ++ tags, err = bucketListTags(ctx, meta.(*conns.AWSClient).S3Conn(ctx), identifier) ++ ++ case "Object", "ObjectCopy", "BucketObject": ++ var objectARN objectARN ++ objectARN, err = parseObjectARN(identifier) ++ if err != nil { ++ return err ++ } ++ tags, err = objectListTags(ctx, meta.(*conns.AWSClient).S3Conn(ctx), objectARN.Bucket, objectARN.Key) ++ ++ default: ++ return nil ++ } ++ ++ if err != nil { ++ return err ++ } ++ ++ if inContext, ok := tftags.FromContext(ctx); ok { ++ inContext.TagsOut = option.Some(tags) ++ } ++ ++ return nil ++} ++ ++// UpdateTags updates s3 service tags. ++// It is called from outside this package. ++func (p *servicePackage) UpdateTags(ctx context.Context, meta any, identifier, resourceType string, oldTags, newTags any) error { ++ switch resourceType { ++ case "Bucket": ++ return bucketUpdateTags(ctx, meta.(*conns.AWSClient).S3Conn(ctx), identifier, oldTags, newTags) ++ ++ case "Object", "ObjectCopy", "BucketObject": ++ objectARN, err := parseObjectARN(identifier) ++ if err != nil { ++ return err ++ } ++ return objectUpdateTags(ctx, meta.(*conns.AWSClient).S3Conn(ctx), objectARN.Bucket, objectARN.Key, oldTags, newTags) ++ ++ default: ++ return nil ++ } ++} +diff --git a/internal/service/s3legacy/tags_gen.go b/internal/service/s3legacy/tags_gen.go +index c65bacf65d..4585316b08 100644 +--- a/internal/service/s3legacy/tags_gen.go ++++ b/internal/service/s3legacy/tags_gen.go +@@ -6,6 +6,7 @@ import ( + "github.com/aws/aws-sdk-go/aws" + "github.com/aws/aws-sdk-go/service/s3" + tftags "github.com/hashicorp/terraform-provider-aws/internal/tags" ++ "github.com/hashicorp/terraform-provider-aws/internal/types/option" + ) + + // []*SERVICE.Tag handling +@@ -26,13 +27,32 @@ func Tags(tags tftags.KeyValueTags) []*s3.Tag { + return result + } + +-// KeyValueTags creates tftags.KeyValueTags from s3 service tags. +-func KeyValueTags(tags []*s3.Tag) tftags.KeyValueTags { ++// keyValueTags creates tftags.KeyValueTags from s3 service tags. ++func keyValueTags(ctx context.Context, tags []*s3.Tag) tftags.KeyValueTags { + m := make(map[string]*string, len(tags)) + + for _, tag := range tags { + m[aws.StringValue(tag.Key)] = tag.Value + } + +- return tftags.New(context.Background(), m) ++ return tftags.New(ctx, m) ++} ++ ++// getTagsIn returns s3 service tags from Context. ++// nil is returned if there are no input tags. ++func getTagsIn(ctx context.Context) []*s3.Tag { ++ if inContext, ok := tftags.FromContext(ctx); ok { ++ if tags := Tags(inContext.TagsIn.UnwrapOrDefault()); len(tags) > 0 { ++ return tags ++ } ++ } ++ ++ return nil ++} ++ ++// setTagsOut sets s3 service tags in Context. ++func setTagsOut(ctx context.Context, tags []*s3.Tag) { ++ if inContext, ok := tftags.FromContext(ctx); ok { ++ inContext.TagsOut = option.Some(keyValueTags(ctx, tags)) ++ } + } diff --git a/patches/0053-Patch-tags-ComputedOnly-on-bedrockagent-and-other-mo.patch b/patches/0053-Patch-tags-ComputedOnly-on-bedrockagent-and-other-mo.patch deleted file mode 100644 index 7bb0a78b0e5..00000000000 --- a/patches/0053-Patch-tags-ComputedOnly-on-bedrockagent-and-other-mo.patch +++ /dev/null @@ -1,71 +0,0 @@ -From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 -From: Anton Tayanovskyy -Date: Mon, 29 Apr 2024 11:24:39 -0400 -Subject: [PATCH] Patch tags ComputedOnly on bedrockagent and other modules - - -diff --git a/internal/service/bcmdataexports/export.go b/internal/service/bcmdataexports/export.go -index 5e4ffa7b43..8e770f9fef 100644 ---- a/internal/service/bcmdataexports/export.go -+++ b/internal/service/bcmdataexports/export.go -@@ -168,7 +168,7 @@ func (r *resourceExport) Schema(ctx context.Context, req resource.SchemaRequest, - Attributes: map[string]schema.Attribute{ - names.AttrID: framework.IDAttribute(), - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - }, - Blocks: map[string]schema.Block{ - "export": schema.ListNestedBlock{ -diff --git a/internal/service/bedrockagent/agent.go b/internal/service/bedrockagent/agent.go -index f33706ef20..58a4041bb0 100644 ---- a/internal/service/bedrockagent/agent.go -+++ b/internal/service/bedrockagent/agent.go -@@ -144,7 +144,7 @@ func (r *agentResource) Schema(ctx context.Context, request resource.SchemaReque - }, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - }, - Blocks: map[string]schema.Block{ - names.AttrTimeouts: timeouts.Block(ctx, timeouts.Opts{ -diff --git a/internal/service/bedrockagent/agent_alias.go b/internal/service/bedrockagent/agent_alias.go -index 193035bbd0..a87fbfd16c 100644 ---- a/internal/service/bedrockagent/agent_alias.go -+++ b/internal/service/bedrockagent/agent_alias.go -@@ -97,7 +97,7 @@ func (r *agentAliasResource) Schema(ctx context.Context, request resource.Schema - }, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - }, - Blocks: map[string]schema.Block{ - names.AttrTimeouts: timeouts.Block(ctx, timeouts.Opts{ -diff --git a/internal/service/bedrockagent/knowledge_base.go b/internal/service/bedrockagent/knowledge_base.go -index 4c026280ed..99b1694b82 100644 ---- a/internal/service/bedrockagent/knowledge_base.go -+++ b/internal/service/bedrockagent/knowledge_base.go -@@ -88,7 +88,7 @@ func (r *knowledgeBaseResource) Schema(ctx context.Context, request resource.Sch - }, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - "updated_at": schema.StringAttribute{ - CustomType: timetypes.RFC3339Type{}, - Computed: true, -diff --git a/internal/service/globalaccelerator/cross_account_attachment.go b/internal/service/globalaccelerator/cross_account_attachment.go -index c6204cfc63..f0d1a055dd 100644 ---- a/internal/service/globalaccelerator/cross_account_attachment.go -+++ b/internal/service/globalaccelerator/cross_account_attachment.go -@@ -72,7 +72,7 @@ func (r *crossAccountAttachmentResource) Schema(ctx context.Context, request res - ElementType: types.StringType, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - }, - Blocks: map[string]schema.Block{ - "resource": schema.SetNestedBlock{ diff --git a/patches/0055-Fix-tags_all-Computed-for-aws_datazone_domain.patch b/patches/0055-Fix-tags_all-Computed-for-aws_datazone_domain.patch deleted file mode 100644 index e42053d99f4..00000000000 --- a/patches/0055-Fix-tags_all-Computed-for-aws_datazone_domain.patch +++ /dev/null @@ -1,19 +0,0 @@ -From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 -From: Florian Stadler -Date: Tue, 14 May 2024 13:01:51 +0200 -Subject: [PATCH] Fix tags_all Computed for aws_datazone_domain - - -diff --git a/internal/service/datazone/domain.go b/internal/service/datazone/domain.go -index 6b6b258733..843255f209 100644 ---- a/internal/service/datazone/domain.go -+++ b/internal/service/datazone/domain.go -@@ -91,7 +91,7 @@ func (r *resourceDomain) Schema(ctx context.Context, req resource.SchemaRequest, - }, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - }, - Blocks: map[string]schema.Block{ - "single_sign_on": schema.ListNestedBlock{ diff --git a/patches/0058-Fix-tags_all-Computed-for-PF-resources.patch b/patches/0058-Fix-tags_all-Computed-for-PF-resources.patch deleted file mode 100644 index a231e24e03a..00000000000 --- a/patches/0058-Fix-tags_all-Computed-for-PF-resources.patch +++ /dev/null @@ -1,19 +0,0 @@ -From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 -From: Florian Stadler -Date: Tue, 11 Jun 2024 14:02:40 +0200 -Subject: [PATCH] Fix tags_all Computed for PF resources - - -diff --git a/internal/service/paymentcryptography/key.go b/internal/service/paymentcryptography/key.go -index 78d09e04e2..1673889cda 100644 ---- a/internal/service/paymentcryptography/key.go -+++ b/internal/service/paymentcryptography/key.go -@@ -117,7 +117,7 @@ func (r *resourceKey) Schema(ctx context.Context, request resource.SchemaRequest - }, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - }, - Blocks: map[string]schema.Block{ - "key_attributes": schema.SingleNestedBlock{ diff --git a/patches/0059-Fix-tags_all-Computed-for-PF-resources.patch b/patches/0059-Fix-tags_all-Computed-for-PF-resources.patch deleted file mode 100644 index 7111ea37eb2..00000000000 --- a/patches/0059-Fix-tags_all-Computed-for-PF-resources.patch +++ /dev/null @@ -1,71 +0,0 @@ -From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 -From: Florian Stadler -Date: Tue, 18 Jun 2024 10:24:51 +0200 -Subject: [PATCH] Fix tags_all Computed for PF resources - - -diff --git a/internal/service/appfabric/app_authorization.go b/internal/service/appfabric/app_authorization.go -index 07bafd3e84..df82b14d52 100644 ---- a/internal/service/appfabric/app_authorization.go -+++ b/internal/service/appfabric/app_authorization.go -@@ -105,7 +105,7 @@ func (r *appAuthorizationResource) Schema(ctx context.Context, request resource. - }, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - "updated_at": schema.StringAttribute{ - CustomType: timetypes.RFC3339Type{}, - Computed: true, -diff --git a/internal/service/appfabric/app_bundle.go b/internal/service/appfabric/app_bundle.go -index 98a55920b8..e1085f4cc4 100644 ---- a/internal/service/appfabric/app_bundle.go -+++ b/internal/service/appfabric/app_bundle.go -@@ -58,7 +58,7 @@ func (r *appBundleResource) Schema(ctx context.Context, request resource.SchemaR - }, - names.AttrID: framework.IDAttribute(), - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - }, - } - } -diff --git a/internal/service/ec2/ec2_capacity_block_reservation.go b/internal/service/ec2/ec2_capacity_block_reservation.go -index eecf8cf1a9..e27245f1fd 100644 ---- a/internal/service/ec2/ec2_capacity_block_reservation.go -+++ b/internal/service/ec2/ec2_capacity_block_reservation.go -@@ -150,7 +150,7 @@ func (r *resourceCapacityBlockReservation) Schema(ctx context.Context, _ resourc - }, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - "tenancy": schema.StringAttribute{ - Computed: true, - PlanModifiers: []planmodifier.String{ -diff --git a/internal/service/fms/resource_set.go b/internal/service/fms/resource_set.go -index 8722e6a2b6..09293cdecc 100644 ---- a/internal/service/fms/resource_set.go -+++ b/internal/service/fms/resource_set.go -@@ -103,7 +103,7 @@ func (r *resourceResourceSet) Schema(ctx context.Context, req resource.SchemaReq - names.AttrID: framework.IDAttribute(), - names.AttrARN: framework.ARNAttributeComputedOnly(), - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - }, - Blocks: map[string]schema.Block{ - "resource_set": resourceSetLNB, -diff --git a/internal/service/guardduty/malware_protection_plan.go b/internal/service/guardduty/malware_protection_plan.go -index efe2773748..c48b5ff4aa 100644 ---- a/internal/service/guardduty/malware_protection_plan.go -+++ b/internal/service/guardduty/malware_protection_plan.go -@@ -88,7 +88,7 @@ func (r *resourceMalwareProtectionPlan) Schema(ctx context.Context, req resource - Computed: true, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - }, - Blocks: map[string]schema.Block{ - "protected_resource": schema.ListNestedBlock{ diff --git a/patches/0060-Fix-tags_all-Computed-for-PF-resources.patch b/patches/0060-Fix-tags_all-Computed-for-PF-resources.patch deleted file mode 100644 index 511f1cee1f9..00000000000 --- a/patches/0060-Fix-tags_all-Computed-for-PF-resources.patch +++ /dev/null @@ -1,19 +0,0 @@ -From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 -From: Florian Stadler -Date: Mon, 24 Jun 2024 12:21:45 +0200 -Subject: [PATCH] Fix tags_all Computed for PF resources - - -diff --git a/internal/service/drs/replication_configuration_template.go b/internal/service/drs/replication_configuration_template.go -index 2a61014670..9d61baebe7 100644 ---- a/internal/service/drs/replication_configuration_template.go -+++ b/internal/service/drs/replication_configuration_template.go -@@ -106,7 +106,7 @@ func (r *replicationConfigurationTemplateResource) Schema(ctx context.Context, r - - "staging_area_tags": tftags.TagsAttribute(), - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - - "use_dedicated_replication_server": schema.BoolAttribute{ - Required: true, diff --git a/patches/0062-Patch-tags-ComputedOnly-for-appfabric-networkmonitor.patch b/patches/0062-Patch-tags-ComputedOnly-for-appfabric-networkmonitor.patch deleted file mode 100644 index e148c9de84b..00000000000 --- a/patches/0062-Patch-tags-ComputedOnly-for-appfabric-networkmonitor.patch +++ /dev/null @@ -1,72 +0,0 @@ -From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 -From: Anton Tayanovskyy -Date: Mon, 1 Jul 2024 11:21:31 -0400 -Subject: [PATCH] Patch tags ComputedOnly for appfabric, networkmonitor, - networkfirewall - - -diff --git a/internal/service/appfabric/ingestion.go b/internal/service/appfabric/ingestion.go -index b3d22c2512..b40e465917 100644 ---- a/internal/service/appfabric/ingestion.go -+++ b/internal/service/appfabric/ingestion.go -@@ -77,7 +77,7 @@ func (r *ingestionResource) Schema(ctx context.Context, request resource.SchemaR - }, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - "tenant_id": schema.StringAttribute{ - Required: true, - Validators: []validator.String{ -diff --git a/internal/service/appfabric/ingestion_destination.go b/internal/service/appfabric/ingestion_destination.go -index a2b6c366c8..31dd84e1eb 100644 ---- a/internal/service/appfabric/ingestion_destination.go -+++ b/internal/service/appfabric/ingestion_destination.go -@@ -81,7 +81,7 @@ func (r *ingestionDestinationResource) Schema(ctx context.Context, request resou - }, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - }, - Blocks: map[string]schema.Block{ - "destination_configuration": schema.ListNestedBlock{ -diff --git a/internal/service/networkfirewall/tls_inspection_configuration.go b/internal/service/networkfirewall/tls_inspection_configuration.go -index d4444801b5..a2ae1ed59a 100644 ---- a/internal/service/networkfirewall/tls_inspection_configuration.go -+++ b/internal/service/networkfirewall/tls_inspection_configuration.go -@@ -118,7 +118,7 @@ func (r *tlsInspectionConfigurationResource) Schema(ctx context.Context, request - }, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - "tls_inspection_configuration_id": framework.IDAttribute(), - "update_token": schema.StringAttribute{ - Computed: true, -diff --git a/internal/service/networkmonitor/monitor.go b/internal/service/networkmonitor/monitor.go -index c47a783686..a940717da7 100644 ---- a/internal/service/networkmonitor/monitor.go -+++ b/internal/service/networkmonitor/monitor.go -@@ -69,7 +69,7 @@ func (r *monitorResource) Schema(ctx context.Context, request resource.SchemaReq - }, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - }, - } - } -diff --git a/internal/service/networkmonitor/probe.go b/internal/service/networkmonitor/probe.go -index 7d11f83838..47d5b89254 100644 ---- a/internal/service/networkmonitor/probe.go -+++ b/internal/service/networkmonitor/probe.go -@@ -109,7 +109,7 @@ func (r *probeResource) Schema(ctx context.Context, request resource.SchemaReque - }, - }, - names.AttrTags: tftags.TagsAttribute(), -- names.AttrTagsAll: tftags.TagsAttributeComputedOnly(), -+ names.AttrTagsAll: tftags.TagsAttribute(), - names.AttrVPCID: schema.StringAttribute{ - Computed: true, - PlanModifiers: []planmodifier.String{ diff --git a/provider/cmd/pulumi-resource-aws/schema.json b/provider/cmd/pulumi-resource-aws/schema.json index 8e839ac5612..3add34cec54 100644 --- a/provider/cmd/pulumi-resource-aws/schema.json +++ b/provider/cmd/pulumi-resource-aws/schema.json @@ -161716,8 +161716,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -161747,6 +161746,13 @@ }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "type": { "type": "string", "description": "Type of Analyzer. Valid values are `ACCOUNT`, `ORGANIZATION`, `ACCOUNT_UNUSED_ACCESS `, `ORGANIZATION_UNUSED_ACCESS`. Defaults to `ACCOUNT`.\n", @@ -161785,8 +161791,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -162321,8 +162326,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -162417,6 +162421,13 @@ }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "validationMethod": { "type": "string", "description": "Which method to use for validation. `DNS` or `EMAIL` are valid. This parameter must not be set for certificates that were imported into ACM and then into Pulumi.\n", @@ -162528,8 +162539,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -162824,8 +162834,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -162878,6 +162887,13 @@ }, "description": "Key-value map of user-defined tags that are attached to the certificate authority. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "type": { "type": "string", "description": "Type of the certificate authority. Defaults to `SUBORDINATE`. Valid values: `ROOT` and `SUBORDINATE`.\n", @@ -162955,8 +162971,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -163248,8 +163263,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -163304,6 +163318,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n\n\u003e **NOTE::** Please note that listeners that are attached to Application Load Balancers must use either `HTTP` or `HTTPS` protocols while listeners that are attached to Network Load Balancers must use the `TCP` protocol.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -163365,8 +163386,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -163472,8 +163492,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -163514,6 +163533,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -163563,8 +163589,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -163709,8 +163734,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string" @@ -163860,6 +163884,13 @@ }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "xffHeaderProcessingMode": { "type": "string", "description": "Determines how the load balancer modifies the `X-Forwarded-For` header in the HTTP request before sending the request to the target. The possible values are `append`, `preserve`, and `remove`. Only valid for Load Balancers of type `application`. The default is `append`.\n" @@ -164004,8 +164035,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string" @@ -164125,8 +164155,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetFailovers": { "type": "array", @@ -164252,6 +164281,13 @@ }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "targetFailovers": { "type": "array", "items": { @@ -164381,8 +164417,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetFailovers": { "type": "array", @@ -164645,8 +164680,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "timeouts": { "$ref": "#/types/aws:amp/ScraperTimeouts:ScraperTimeouts" @@ -164725,8 +164759,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "timeouts": { "$ref": "#/types/aws:amp/ScraperTimeouts:ScraperTimeouts" @@ -164770,8 +164803,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -164799,6 +164831,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -164837,8 +164876,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -164958,8 +164996,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -165063,6 +165100,13 @@ "type": "string" }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -165179,8 +165223,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -165379,8 +165422,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "ttl": { "type": "string", @@ -165472,6 +165514,13 @@ }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "ttl": { "type": "string", "description": "Content Time To Live (TTL) for the website in seconds.\n" @@ -165588,8 +165637,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "ttl": { "type": "string", @@ -165912,8 +165960,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "value": { "type": "string", @@ -165955,6 +166002,13 @@ }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "value": { "type": "string", "description": "Value of the API key. If specified, the value must be an alphanumeric string between 20 and 128 characters. If not specified, it will be automatically generated by AWS on creation.\n", @@ -166006,8 +166060,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "value": { "type": "string", @@ -166309,8 +166362,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -166331,6 +166383,13 @@ "type": "string" }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -166368,8 +166427,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -166777,8 +166835,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -166859,6 +166916,13 @@ "type": "string" }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n\nWhen referencing an AWS-managed certificate, the following arguments are supported:\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -166961,8 +167025,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -168335,8 +168398,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -168415,6 +168477,13 @@ "type": "string" }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -168502,8 +168571,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -168623,8 +168691,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "variables": { "type": "object", @@ -168720,6 +168787,13 @@ }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "variables": { "type": "object", "additionalProperties": { @@ -168824,8 +168898,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "variables": { "type": "object", @@ -168887,8 +168960,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "throttleSettings": { "$ref": "#/types/aws:apigateway/UsagePlanThrottleSettings:UsagePlanThrottleSettings", @@ -168930,6 +169002,13 @@ "type": "string" } }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "throttleSettings": { "$ref": "#/types/aws:apigateway/UsagePlanThrottleSettings:UsagePlanThrottleSettings", "description": "Throttling limits of the usage plan.\n" @@ -168976,8 +169055,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "throttleSettings": { "$ref": "#/types/aws:apigateway/UsagePlanThrottleSettings:UsagePlanThrottleSettings", @@ -169096,8 +169174,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetArn": { "type": "string", @@ -169126,6 +169203,13 @@ }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "targetArn": { "type": "string", "description": "List of network load balancer arns in the VPC targeted by the VPC link. Currently AWS only supports 1 target.\n", @@ -169161,8 +169245,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetArn": { "type": "string", @@ -169244,8 +169327,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "target": { "type": "string", @@ -169319,6 +169401,13 @@ }, "description": "Map of tags to assign to the API. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "target": { "type": "string", "description": "Part of _quick create_. Quick create produces an API with an integration, a default catch-all route, and a default stage which is configured to automatically deploy changes.\nFor HTTP integrations, specify a fully qualified URL. For Lambda integrations, specify a function ARN.\nThe type of the integration will be `HTTP_PROXY` or `AWS_PROXY`, respectively. Applicable for HTTP APIs.\n", @@ -169406,8 +169495,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "target": { "type": "string", @@ -169768,8 +169856,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -169804,6 +169891,13 @@ "type": "string" }, "description": "Map of tags to assign to the domain name. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -169851,8 +169945,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -170695,8 +170788,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -170763,6 +170855,13 @@ "type": "string" }, "description": "Map of tags to assign to the stage. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -170843,8 +170942,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -170887,8 +170985,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -170925,6 +171022,13 @@ "type": "string" }, "description": "Map of tags to assign to the VPC Link. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -170970,8 +171074,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -171313,8 +171416,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -171361,6 +171463,13 @@ "type": "string" }, "description": "Map of tags to assign to the scalable target. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -171416,8 +171525,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -171450,8 +171558,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -171474,6 +171581,13 @@ "type": "string" }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -171503,8 +171617,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -171557,8 +171670,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -171614,6 +171726,13 @@ }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "type": { "type": "string", "description": "Type of configurations contained in the profile. Valid values: `AWS.AppConfig.FeatureFlags` and `AWS.Freeform`. Default: `AWS.Freeform`.\n", @@ -171680,8 +171799,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -171758,8 +171876,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -171816,6 +171933,13 @@ "type": "string" }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -171891,8 +172015,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -171945,8 +172068,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -171994,6 +172116,13 @@ "type": "string" }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -172050,8 +172179,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -172103,8 +172231,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -172193,8 +172320,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -172235,8 +172361,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -172272,6 +172397,13 @@ "type": "string" }, "description": "Tags to apply to the Event Integration. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -172316,8 +172448,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -172363,8 +172494,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "version": { "type": "integer", @@ -172410,6 +172540,12 @@ "type": "string" }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } } }, "requiredInputs": [ @@ -172456,8 +172592,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "version": { "type": "integer", @@ -172715,8 +172850,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "tenants": { "type": "array", @@ -172826,8 +172960,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "tenants": { "type": "array", @@ -172959,8 +173092,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -173003,8 +173135,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -173041,8 +173172,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "tenantId": { "type": "string", @@ -173119,8 +173249,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "tenantId": { "type": "string", @@ -173165,8 +173294,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:appfabric/IngestionDestinationTimeouts:IngestionDestinationTimeouts" @@ -173245,8 +173373,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:appfabric/IngestionDestinationTimeouts:IngestionDestinationTimeouts" @@ -173421,8 +173548,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "tasks": { "type": "array", @@ -173480,6 +173606,13 @@ }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "tasks": { "type": "array", "items": { @@ -173546,8 +173679,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "tasks": { "type": "array", @@ -173603,8 +173735,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -173645,6 +173776,13 @@ "type": "string" }, "description": "Tags to apply to the Data Integration. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -173694,8 +173832,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -173748,8 +173885,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -173795,6 +173931,13 @@ "type": "string" }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -173850,8 +173993,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -173904,8 +174046,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "virtualGatewayName": { "type": "string", @@ -173951,6 +174092,13 @@ }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "virtualGatewayName": { "type": "string", "description": "Name of the virtual gateway to associate the gateway route with. Must be between 1 and 255 characters in length.\n", @@ -174012,8 +174160,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "virtualGatewayName": { "type": "string", @@ -174067,8 +174214,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -174096,6 +174242,13 @@ "type": "string" }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -174142,8 +174295,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -174196,8 +174348,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "virtualRouterName": { "type": "string", @@ -174243,6 +174394,13 @@ }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "virtualRouterName": { "type": "string", "description": "Name of the virtual router in which to create the route. Must be between 1 and 255 characters in length.\n", @@ -174304,8 +174462,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "virtualRouterName": { "type": "string", @@ -174363,8 +174520,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -174404,6 +174560,13 @@ "type": "string" }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -174460,8 +174623,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -174514,8 +174676,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -174555,6 +174716,13 @@ "type": "string" }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -174611,8 +174779,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -174665,8 +174832,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -174706,6 +174872,13 @@ "type": "string" }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -174762,8 +174935,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -174816,8 +174988,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -174857,6 +175028,13 @@ "type": "string" }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -174913,8 +175091,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -174973,8 +175150,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -175014,6 +175190,13 @@ "type": "string" }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -175076,8 +175259,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -175114,8 +175296,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -175142,6 +175323,13 @@ "type": "string" }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -175181,8 +175369,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -175408,8 +175595,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "traceConfiguration": { "$ref": "#/types/aws:apprunner/ObservabilityConfigurationTraceConfiguration:ObservabilityConfigurationTraceConfiguration", @@ -175437,6 +175623,13 @@ }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "traceConfiguration": { "$ref": "#/types/aws:apprunner/ObservabilityConfigurationTraceConfiguration:ObservabilityConfigurationTraceConfiguration", "description": "Configuration of the tracing feature within this observability configuration. If you don't specify it, App Runner doesn't enable tracing. See Trace Configuration below for more details.\n" @@ -175481,8 +175674,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "traceConfiguration": { "$ref": "#/types/aws:apprunner/ObservabilityConfigurationTraceConfiguration:ObservabilityConfigurationTraceConfiguration", @@ -175555,8 +175747,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -175613,6 +175804,13 @@ "type": "string" }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -175684,8 +175882,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -175728,8 +175925,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcConnectorName": { "type": "string", @@ -175773,6 +175969,13 @@ }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcConnectorName": { "type": "string", "description": "Name for the VPC connector.\n", @@ -175823,8 +176026,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcConnectorName": { "type": "string", @@ -175878,8 +176080,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -175910,6 +176111,13 @@ "type": "string" }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -175955,8 +176163,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -176131,8 +176338,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "vpcConfig": { "$ref": "#/types/aws:appstream/FleetVpcConfig:FleetVpcConfig", @@ -176234,6 +176440,12 @@ }, "description": "Map of tags to attach to AppStream instances.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, "vpcConfig": { "$ref": "#/types/aws:appstream/FleetVpcConfig:FleetVpcConfig", "description": "Configuration block for the VPC configuration for the image builder. See below.\n" @@ -176335,8 +176547,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "vpcConfig": { "$ref": "#/types/aws:appstream/FleetVpcConfig:FleetVpcConfig", @@ -176469,8 +176680,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcConfig": { "$ref": "#/types/aws:appstream/ImageBuilderVpcConfig:ImageBuilderVpcConfig", @@ -176560,6 +176770,13 @@ }, "description": "Map of tags to assign to the instance. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcConfig": { "$ref": "#/types/aws:appstream/ImageBuilderVpcConfig:ImageBuilderVpcConfig", "description": "Configuration block for the VPC configuration for the image builder. See below.\n", @@ -176654,8 +176871,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcConfig": { "$ref": "#/types/aws:appstream/ImageBuilderVpcConfig:ImageBuilderVpcConfig", @@ -176737,8 +176953,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "userSettings": { "type": "array", @@ -176820,6 +177035,12 @@ }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, "userSettings": { "type": "array", "items": { @@ -176900,8 +177121,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "userSettings": { "type": "array", @@ -177840,8 +178060,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "uris": { "type": "object", @@ -177921,6 +178140,13 @@ }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "userPoolConfig": { "$ref": "#/types/aws:appsync/GraphQLApiUserPoolConfig:GraphQLApiUserPoolConfig", "description": "Amazon Cognito User Pool configuration. See `user_pool_config` Block for details.\n" @@ -178000,8 +178226,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "uris": { "type": "object", @@ -178343,8 +178568,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -178383,6 +178607,13 @@ }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "type": { "type": "string", "description": "Type of data catalog: `LAMBDA` for a federated catalog, `GLUE` for AWS Glue Catalog, or `HIVE` for an external hive metastore.\n" @@ -178428,8 +178659,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -178777,8 +179007,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -178814,6 +179043,13 @@ "type": "string" }, "description": "Key-value map of resource tags for the workgroup. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -178856,8 +179092,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -178979,8 +179214,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "required": [ @@ -179088,8 +179322,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "type": "object" @@ -179313,8 +179546,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "testingInformation": { "type": "string", @@ -179408,8 +179640,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "testingInformation": { "type": "string", @@ -179464,8 +179695,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "required": [ @@ -179543,8 +179773,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "type": "object" @@ -181197,8 +181426,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -181233,6 +181461,13 @@ "type": "string" }, "description": "Metadata that you can assign to help organize the frameworks you create. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -181285,8 +181520,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -181384,8 +181618,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "version": { "type": "string", @@ -181425,6 +181658,13 @@ "type": "string" }, "description": "Metadata that you can assign to help organize the plans you create. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -181468,8 +181708,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "version": { "type": "string", @@ -181584,8 +181823,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -181621,6 +181859,13 @@ "type": "string" }, "description": "Metadata that you can assign to help organize the report plans you create. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -181671,8 +181916,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -181871,8 +182115,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -181903,6 +182146,13 @@ "type": "string" }, "description": "Metadata that you can assign to help organize the resources that you create. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -181942,8 +182192,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -182227,8 +182476,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -182286,6 +182534,13 @@ }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "type": { "type": "string", "description": "The type of the compute environment. Valid items are `MANAGED` or `UNMANAGED`.\n", @@ -182358,8 +182613,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -182447,8 +182701,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeout": { "$ref": "#/types/aws:batch/JobDefinitionTimeout:JobDefinitionTimeout", @@ -182522,6 +182775,13 @@ }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "timeout": { "$ref": "#/types/aws:batch/JobDefinitionTimeout:JobDefinitionTimeout", "description": "Specifies the timeout for jobs so that if a job runs longer, AWS Batch terminates the job. Maximum number of `timeout` is `1`. Defined below.\n" @@ -182608,8 +182868,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeout": { "$ref": "#/types/aws:batch/JobDefinitionTimeout:JobDefinitionTimeout", @@ -182673,8 +182932,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:batch/JobQueueTimeouts:JobQueueTimeouts" @@ -182784,8 +183042,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:batch/JobQueueTimeouts:JobQueueTimeouts" @@ -182820,8 +183077,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -182844,6 +183100,13 @@ "type": "string" }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -182873,8 +183136,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -182902,8 +183164,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "timeouts": { "$ref": "#/types/aws:bcmdata/ExportTimeouts:ExportTimeouts" @@ -182954,8 +183215,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "timeouts": { "$ref": "#/types/aws:bcmdata/ExportTimeouts:ExportTimeouts" @@ -183030,8 +183290,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:bedrock/AgentAgentTimeouts:AgentAgentTimeouts" @@ -183172,8 +183431,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:bedrock/AgentAgentTimeouts:AgentAgentTimeouts" @@ -183366,8 +183624,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:bedrock/AgentAgentAliasTimeouts:AgentAgentAliasTimeouts" @@ -183458,8 +183715,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:bedrock/AgentAgentAliasTimeouts:AgentAgentAliasTimeouts" @@ -183726,8 +183982,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:bedrock/AgentKnowledgeBaseTimeouts:AgentKnowledgeBaseTimeouts" @@ -183830,8 +184085,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:bedrock/AgentKnowledgeBaseTimeouts:AgentKnowledgeBaseTimeouts" @@ -183906,8 +184160,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:bedrock/CustomModelTimeouts:CustomModelTimeouts" @@ -184081,8 +184334,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:bedrock/CustomModelTimeouts:CustomModelTimeouts" @@ -184152,8 +184404,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:bedrock/ProvisionedModelThroughputTimeouts:ProvisionedModelThroughputTimeouts" @@ -184234,8 +184485,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:bedrock/ProvisionedModelThroughputTimeouts:ProvisionedModelThroughputTimeouts" @@ -184341,8 +184591,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timePeriodEnd": { "type": "string", @@ -184435,6 +184684,13 @@ }, "description": "Map of tags assigned to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "timePeriodEnd": { "type": "string", "description": "The end of the time period covered by the budget. There are no restrictions on the end date. Format: `2017-01-01_12:00`.\n" @@ -184527,8 +184783,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timePeriodEnd": { "type": "string", @@ -184612,8 +184867,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -184680,6 +184934,13 @@ "type": "string" }, "description": "Map of tags assigned to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -184761,8 +185022,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -184795,8 +185055,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -184822,6 +185081,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -184857,8 +185123,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -184895,8 +185160,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -184924,6 +185188,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n\nEither `account_aggregation_source` or `organization_aggregation_source` must be specified.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -184958,8 +185229,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -186257,8 +186527,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -186308,6 +186577,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -186368,8 +186644,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -186437,8 +186712,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -186468,6 +186742,13 @@ "type": "string" }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -186506,8 +186787,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -186635,8 +186915,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "required": [ @@ -186663,6 +186942,12 @@ "additionalProperties": { "type": "string" } + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } } }, "requiredInputs": [ @@ -186697,8 +186982,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "type": "object" @@ -186739,8 +187023,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -186771,6 +187054,13 @@ "type": "string" }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -186812,8 +187102,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -187293,8 +187582,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "required": [ @@ -187330,6 +187618,12 @@ "type": "string" }, "description": "Key-value map of tags for the resource.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } } }, "requiredInputs": [ @@ -187373,8 +187667,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "type": "object" @@ -187436,8 +187729,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "updateTime": { "type": "string" @@ -187500,6 +187792,12 @@ "type": "string" }, "description": "Key value pairs which tag the collaboration.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } } }, "requiredInputs": [ @@ -187569,8 +187867,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "updateTime": { "type": "string" @@ -187624,8 +187921,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "updateTime": { "type": "string", @@ -187674,6 +187970,12 @@ "type": "string" }, "description": "Key value pairs which tag the configured table.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } } }, "requiredInputs": [ @@ -187728,8 +188030,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "updateTime": { "type": "string", @@ -187790,8 +188091,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -187852,6 +188152,13 @@ "type": "string" }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -187915,8 +188222,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -188361,8 +188667,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "templateBody": { "type": "string", @@ -188441,6 +188746,13 @@ }, "description": "Map of resource tags to associate with this stack. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "templateBody": { "type": "string", "description": "Structure containing the template body (max size: 51,200 bytes).\n" @@ -188525,8 +188837,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "templateBody": { "type": "string", @@ -188618,8 +188929,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "templateBody": { "type": "string", @@ -188698,6 +189008,13 @@ }, "description": "Key-value map of tags to associate with this StackSet and the Stacks created from it. AWS CloudFormation also propagates these tags to supported resources that are created in the Stacks. A maximum number of 50 tags can be specified. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "templateBody": { "type": "string", "description": "String containing the CloudFormation template body. Maximum size: 51,200 bytes. Conflicts with `template_url`.\n" @@ -188782,8 +189099,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "templateBody": { "type": "string", @@ -189251,8 +189567,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "trustedKeyGroups": { "type": "array", @@ -189372,6 +189687,13 @@ "type": "string" } }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "viewerCertificate": { "$ref": "#/types/aws:cloudfront/DistributionViewerCertificate:DistributionViewerCertificate" }, @@ -189503,8 +189825,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "trustedKeyGroups": { "type": "array", @@ -190711,8 +191032,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -190754,6 +191074,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -190817,8 +191144,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -191160,8 +191486,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "terminationProtectionEnabled": { "type": "boolean", @@ -191211,6 +191536,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "terminationProtectionEnabled": { "type": "boolean", "description": "Specifies whether termination protection is enabled for the event data store. If termination protection is enabled, you cannot delete the event data store until termination protection is disabled. Default: `true`.\n" @@ -191264,8 +191596,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "terminationProtectionEnabled": { "type": "boolean", @@ -191367,8 +191698,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -191455,6 +191785,13 @@ "type": "string" }, "description": "Map of tags to assign to the trail. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -191553,8 +191890,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -191620,8 +191956,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -191680,6 +192015,13 @@ "type": "string" }, "description": "A map of tags to associate with the alarm. Up to 50 tags are allowed. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -191748,8 +192090,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -192038,8 +192379,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -192064,6 +192404,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -192095,8 +192442,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -192505,8 +192851,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -192566,6 +192911,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -192631,8 +192983,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -192949,8 +193300,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "trafficPercentageToMonitor": { "type": "integer", @@ -192998,6 +193348,13 @@ }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "trafficPercentageToMonitor": { "type": "integer", "description": "The percentage of the internet-facing traffic for your application that you want to monitor with this monitor.\n" @@ -193053,8 +193410,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "trafficPercentageToMonitor": { "type": "integer", @@ -193138,8 +193494,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetArn": { "type": "string", @@ -193170,6 +193525,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "targetArn": { "type": "string", "description": "The ARN of the target Amazon Kinesis stream resource for the destination.\n" @@ -193207,8 +193569,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetArn": { "type": "string", @@ -193320,8 +193681,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -193365,6 +193725,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -193413,8 +193780,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -193841,8 +194207,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "threshold": { "type": "number", @@ -193988,6 +194353,13 @@ }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n\n\u003e **NOTE:** If you specify at least one `metric_query`, you may not specify a `metric_name`, `namespace`, `period` or `statistic`. If you do not specify a `metric_query`, you must specify each of these (although you may use `extended_statistic` instead of `statistic`).\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "threshold": { "type": "number", "description": "The value against which the specified statistic is compared. This parameter is required for alarms based on static thresholds, but should not be used for alarms based on anomaly detection models.\n" @@ -194139,8 +194511,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "threshold": { "type": "number", @@ -194238,8 +194609,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -194308,6 +194678,13 @@ "type": "string" }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -194393,8 +194770,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -194526,8 +194902,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -194563,6 +194938,13 @@ "type": "string" }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -194622,8 +195004,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -194761,8 +195142,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "upstreams": { "type": "array", @@ -194816,6 +195196,13 @@ }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "upstreams": { "type": "array", "items": { @@ -194879,8 +195266,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "upstreams": { "type": "array", @@ -195116,8 +195502,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcConfig": { "$ref": "#/types/aws:codebuild/ProjectVpcConfig:ProjectVpcConfig", @@ -195242,6 +195627,13 @@ }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcConfig": { "$ref": "#/types/aws:codebuild/ProjectVpcConfig:ProjectVpcConfig", "description": "Configuration block. Detailed below.\n" @@ -195377,8 +195769,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcConfig": { "$ref": "#/types/aws:codebuild/ProjectVpcConfig:ProjectVpcConfig", @@ -195423,8 +195814,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -195460,6 +195850,13 @@ }, "description": "Key-value mapping of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "type": { "type": "string", "description": "The type of the Report Group. Valid value are `TEST` and `CODE_COVERAGE`.\n", @@ -195506,8 +195903,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -196225,8 +196621,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -196261,6 +196656,13 @@ "type": "string" }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -196313,8 +196715,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -196426,8 +196827,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -196454,6 +196854,13 @@ "type": "string" }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -196496,8 +196903,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -196692,8 +197098,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "triggerConfigurations": { "type": "array", @@ -196793,6 +197198,13 @@ }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "triggerConfigurations": { "type": "array", "items": { @@ -196905,8 +197317,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "triggerConfigurations": { "type": "array", @@ -196950,8 +197361,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -197012,8 +197422,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -197078,8 +197487,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "required": [ @@ -197111,6 +197519,12 @@ "additionalProperties": { "type": "string" } + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } } }, "requiredInputs": [ @@ -197177,8 +197591,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "type": "object" @@ -197229,8 +197642,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "version": { "type": "string" @@ -197282,6 +197694,13 @@ "type": "string" } }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "version": { "type": "string", "willReplaceOnChanges": true @@ -197345,8 +197764,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "version": { "type": "string", @@ -197405,8 +197823,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "triggers": { "type": "array", @@ -197470,6 +197887,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "triggers": { "type": "array", "items": { @@ -197540,8 +197964,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "triggers": { "type": "array", @@ -197599,8 +198022,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetAction": { "type": "string", @@ -197655,6 +198077,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "targetAction": { "type": "string", "description": "The name of the action in a pipeline you want to connect to the webhook. The action must be from the source (first) stage of the pipeline.\n", @@ -197713,8 +198142,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetAction": { "type": "string", @@ -197769,8 +198197,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -197802,6 +198229,13 @@ "type": "string" }, "description": "Map of key-value resource tags to associate with the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -197842,8 +198276,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -197983,8 +198416,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targets": { "type": "array", @@ -198034,6 +198466,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "targets": { "type": "array", "items": { @@ -198090,8 +198529,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targets": { "type": "array", @@ -198167,8 +198605,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -198229,6 +198666,13 @@ "type": "string" }, "description": "A map of tags to assign to the Identity Pool. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -198299,8 +198743,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -199697,8 +200140,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "userAttributeUpdateSettings": { "$ref": "#/types/aws:cognito/UserPoolUserAttributeUpdateSettings:UserPoolUserAttributeUpdateSettings", @@ -199833,6 +200275,13 @@ }, "description": "Map of tags to assign to the User Pool. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "userAttributeUpdateSettings": { "$ref": "#/types/aws:cognito/UserPoolUserAttributeUpdateSettings:UserPoolUserAttributeUpdateSettings", "description": "Configuration block for user attribute update settings. Detailed below.\n" @@ -199984,8 +200433,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "userAttributeUpdateSettings": { "$ref": "#/types/aws:cognito/UserPoolUserAttributeUpdateSettings:UserPoolUserAttributeUpdateSettings", @@ -200664,8 +201112,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "versionName": { "type": "string", @@ -200731,6 +201178,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` Configuration Block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "versionName": { "type": "string", "description": "Name for the version of the Document Classifier.\nEach version must have a unique name within the Document Classifier.\nIf omitted, the provider will assign a random, unique version name.\nIf explicitly set to `\"\"`, no version name will be set.\nHas a maximum length of 63 characters.\nCan contain upper- and lower-case letters, numbers, and hypen (`-`).\nConflicts with `version_name_prefix`.\n" @@ -200800,8 +201254,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "versionName": { "type": "string", @@ -200862,8 +201315,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "versionName": { "type": "string", @@ -200920,6 +201372,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` Configuration Block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "versionName": { "type": "string", "description": "Name for the version of the Entity Recognizer.\nEach version must have a unique name within the Entity Recognizer.\nIf omitted, the provider will assign a random, unique version name.\nIf explicitly set to `\"\"`, no version name will be set.\nHas a maximum length of 63 characters.\nCan contain upper- and lower-case letters, numbers, and hypen (`-`).\nConflicts with `version_name_prefix`.\n" @@ -200981,8 +201440,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "versionName": { "type": "string", @@ -201100,8 +201558,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -201148,6 +201605,13 @@ }, "description": "Tags to apply to the Contact Flow. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "type": { "type": "string", "description": "Specifies the type of the Contact Flow. Defaults to `CONTACT_FLOW`. Allowed Values are: `CONTACT_FLOW`, `CUSTOMER_QUEUE`, `CUSTOMER_HOLD`, `CUSTOMER_WHISPER`, `AGENT_HOLD`, `AGENT_WHISPER`, `OUTBOUND_WHISPER`, `AGENT_TRANSFER`, `QUEUE_TRANSFER`.\n", @@ -201204,8 +201668,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -201263,8 +201726,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -201306,6 +201768,13 @@ "type": "string" }, "description": "Tags to apply to the Contact Flow Module. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -201358,8 +201827,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -201407,8 +201875,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeZone": { "type": "string", @@ -201451,6 +201918,13 @@ }, "description": "Tags to apply to the Hours of Operation. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "timeZone": { "type": "string", "description": "Specifies the time zone of the Hours of Operation.\n" @@ -201503,8 +201977,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeZone": { "type": "string", @@ -201867,8 +202340,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetArn": { "type": "string", @@ -201911,6 +202383,13 @@ }, "description": "Tags to apply to the Phone Number. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "targetArn": { "type": "string", "description": "The Amazon Resource Name (ARN) for Amazon Connect instances that phone numbers are claimed to.\n" @@ -201976,8 +202455,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetArn": { "type": "string", @@ -202050,8 +202528,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -202105,6 +202582,13 @@ "type": "string" }, "description": "Tags to apply to the Queue. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -202169,8 +202653,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -202215,8 +202698,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -202250,6 +202732,13 @@ "type": "string" }, "description": "Tags to apply to the Quick Connect. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -202295,8 +202784,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -202355,8 +202843,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -202406,6 +202893,13 @@ "type": "string" }, "description": "Tags to apply to the Routing Profile. If configured with a provider\n`default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -202467,8 +202961,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -202520,8 +203013,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -202559,6 +203051,13 @@ "type": "string" }, "description": "Tags to apply to the Security Profile. If configured with a provider\n`default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -202611,8 +203110,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -202677,8 +203175,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "userId": { "type": "string", @@ -202745,6 +203242,13 @@ "type": "string" }, "description": "Tags to apply to the user. If configured with a provider\n`default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -202814,8 +203318,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "userId": { "type": "string", @@ -202871,8 +203374,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -202904,6 +203406,13 @@ "type": "string" }, "description": "Tags to apply to the hierarchy group. If configured with a provider\n`default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -202956,8 +203465,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -203055,8 +203563,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vocabularyId": { "type": "string", @@ -203102,6 +203609,13 @@ "type": "string" }, "description": "Tags to apply to the vocabulary. If configured with a provider\n`default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -203160,8 +203674,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vocabularyId": { "type": "string", @@ -203284,8 +203797,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the landing zone, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the landing zone, including those inherited from the provider `default_tags` configuration block.\n" }, "version": { "type": "string", @@ -203312,6 +203824,13 @@ }, "description": "Tags to apply to the landing zone. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the landing zone, including those inherited from the provider `default_tags` configuration block.\n" + }, "version": { "type": "string", "description": "The landing zone version.\n" @@ -203355,8 +203874,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the landing zone, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the landing zone, including those inherited from the provider `default_tags` configuration block.\n" }, "version": { "type": "string", @@ -203401,8 +203919,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -203437,6 +203954,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -203480,8 +204004,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -203532,8 +204055,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "thresholdExpression": { "$ref": "#/types/aws:costexplorer/AnomalySubscriptionThresholdExpression:AnomalySubscriptionThresholdExpression", @@ -203586,6 +204108,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "thresholdExpression": { "$ref": "#/types/aws:costexplorer/AnomalySubscriptionThresholdExpression:AnomalySubscriptionThresholdExpression", "description": "An Expression object used to specify the anomalies that you want to generate alerts for. See Threshold Expression.\n" @@ -203643,8 +204172,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "thresholdExpression": { "$ref": "#/types/aws:costexplorer/AnomalySubscriptionThresholdExpression:AnomalySubscriptionThresholdExpression", @@ -203761,8 +204289,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -203813,6 +204340,13 @@ "type": "string" }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -203874,8 +204408,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -204122,8 +204655,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -204164,6 +204696,13 @@ "type": "string" }, "description": "Tags to apply to the domain. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -204214,8 +204753,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -204544,8 +205082,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -204575,6 +205112,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -204613,8 +205157,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -204651,8 +205194,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -204677,6 +205219,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -204714,8 +205263,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -204744,8 +205292,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -204769,6 +205316,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -204796,8 +205350,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -204950,8 +205503,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcEndpointId": { "type": "string", @@ -205009,6 +205561,13 @@ }, "description": "Key-value pairs of resource tags to assign to the DataSync Agent. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcEndpointId": { "type": "string", "description": "The ID of the VPC (virtual private cloud) endpoint that the agent has access to.\n", @@ -205069,8 +205628,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcEndpointId": { "type": "string", @@ -205125,8 +205683,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "uri": { "type": "string" @@ -205177,6 +205734,13 @@ "type": "string" }, "description": "Key-value pairs of resource tags to assign to the DataSync Location. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -205233,8 +205797,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "uri": { "type": "string" @@ -205285,8 +205848,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "uri": { "type": "string", @@ -205333,6 +205895,13 @@ "type": "string" }, "description": "Key-value pairs of resource tags to assign to the DataSync Location. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -205386,8 +205955,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "uri": { "type": "string", @@ -205447,8 +206015,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "uri": { "type": "string" @@ -205502,6 +206069,13 @@ "type": "string" }, "description": "Key-value pairs of resource tags to assign to the DataSync Location. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -205560,8 +206134,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "uri": { "type": "string" @@ -205608,8 +206181,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "uri": { "type": "string", @@ -205650,6 +206222,13 @@ "type": "string" }, "description": "Key-value pairs of resource tags to assign to the DataSync Location. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -205697,8 +206276,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "uri": { "type": "string", @@ -205752,8 +206330,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "uri": { "type": "string", @@ -205801,6 +206378,12 @@ "type": "string" }, "description": "Key-value pairs of resource tags to assign to the DataSync Location. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } } }, "requiredInputs": [ @@ -205856,8 +206439,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "uri": { "type": "string", @@ -205914,8 +206496,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "uri": { "type": "string", @@ -205974,6 +206555,13 @@ }, "description": "Key-value pairs of resource tags to assign to the DataSync Location. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "user": { "type": "string", "description": "The user who has the permissions to access files and folders in the FSx for Windows file system.\n", @@ -206038,8 +206626,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "uri": { "type": "string", @@ -206135,8 +206722,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "uri": { "type": "string" @@ -206219,6 +206805,13 @@ "type": "string" }, "description": "Key-value pairs of resource tags to assign to the DataSync Location. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -206306,8 +206899,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "uri": { "type": "string" @@ -206375,8 +206967,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "uri": { "type": "string", @@ -206441,6 +207032,13 @@ "type": "string" }, "description": "Key-value pairs of resource tags to assign to the DataSync Location. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -206509,8 +207107,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "uri": { "type": "string", @@ -206567,8 +207164,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "uri": { "type": "string" @@ -206626,6 +207222,13 @@ }, "description": "Key-value pairs of resource tags to assign to the DataSync Location. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "user": { "type": "string", "description": "The user who can mount the share and has file and folder permissions in the SMB share.\n" @@ -206686,8 +207289,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "uri": { "type": "string" @@ -206735,8 +207337,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "uri": { "type": "string" @@ -206774,6 +207375,13 @@ "type": "string" }, "description": "Key-value pairs of resource tags to assign to the DataSync Location. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -206817,8 +207425,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "uri": { "type": "string" @@ -206870,8 +207477,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "uri": { "type": "string" @@ -206922,6 +207528,13 @@ "type": "string" }, "description": "Key-value pairs of resource tags to assign to the DataSync Location. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -206977,8 +207590,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "uri": { "type": "string" @@ -207041,8 +207653,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "taskReportConfig": { "$ref": "#/types/aws:datasync/TaskTaskReportConfig:TaskTaskReportConfig", @@ -207101,6 +207712,13 @@ }, "description": "Key-value pairs of resource tags to assign to the DataSync Task. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "taskReportConfig": { "$ref": "#/types/aws:datasync/TaskTaskReportConfig:TaskTaskReportConfig", "description": "Configuration block containing the configuration of a DataSync Task Report. See `task_report_config` below.\n" @@ -207166,8 +207784,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "taskReportConfig": { "$ref": "#/types/aws:datasync/TaskTaskReportConfig:TaskTaskReportConfig", @@ -207219,8 +207836,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:datazone/DomainTimeouts:DomainTimeouts" @@ -207309,8 +207925,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:datazone/DomainTimeouts:DomainTimeouts" @@ -207537,8 +208152,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -207628,6 +208242,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -207738,8 +208359,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -207909,8 +208529,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "required": [ @@ -207925,6 +208544,12 @@ "type": "string" }, "description": "A map of tags to assign to the instance. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } } }, "stateInputs": { @@ -207949,8 +208574,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "type": "object" @@ -208256,8 +208880,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string" @@ -208301,6 +208924,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -208349,8 +208979,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string" @@ -208401,8 +209030,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -208440,6 +209068,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -208484,8 +209119,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -208538,8 +209172,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -208604,6 +209237,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "type": { "type": "string", "description": "The type of network profile to create. Valid values are listed are `PRIVATE` and `CURATED`.\n" @@ -208675,8 +209315,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -208729,8 +209368,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -208753,6 +209391,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -208782,8 +209427,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -208816,8 +209460,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcConfig": { "$ref": "#/types/aws:devicefarm/TestGridProjectVpcConfig:TestGridProjectVpcConfig", @@ -208845,6 +209488,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcConfig": { "$ref": "#/types/aws:devicefarm/TestGridProjectVpcConfig:TestGridProjectVpcConfig", "description": "The VPC security groups and subnets that are attached to a project. See VPC Config below.\n" @@ -208877,8 +209527,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcConfig": { "$ref": "#/types/aws:devicefarm/TestGridProjectVpcConfig:TestGridProjectVpcConfig", @@ -209385,8 +210034,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vlanId": { "type": "integer", @@ -209450,6 +210098,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -209536,8 +210191,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vlanId": { "type": "integer", @@ -210341,8 +210995,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "virtualInterfaceId": { "type": "string", @@ -210371,6 +211024,13 @@ }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "virtualInterfaceId": { "type": "string", "description": "The ID of the Direct Connect virtual interface to accept.\n", @@ -210409,8 +211069,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "virtualInterfaceId": { "type": "string", @@ -210652,8 +211311,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "virtualInterfaceId": { "type": "string", @@ -210673,6 +211331,13 @@ }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "virtualInterfaceId": { "type": "string", "description": "The ID of the Direct Connect virtual interface to accept.\n", @@ -210701,8 +211366,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "virtualInterfaceId": { "type": "string", @@ -210941,8 +211605,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "virtualInterfaceId": { "type": "string", @@ -210968,6 +211631,13 @@ }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "virtualInterfaceId": { "type": "string", "description": "The ID of the Direct Connect virtual interface to accept.\n", @@ -211002,8 +211672,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "virtualInterfaceId": { "type": "string", @@ -211069,8 +211738,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -211119,6 +211787,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -211184,8 +211859,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -211356,8 +212030,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vlan": { "type": "integer", @@ -211439,6 +212112,13 @@ }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vlan": { "type": "integer", "description": "The VLAN ID.\n", @@ -211534,8 +212214,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vlan": { "type": "integer", @@ -211612,8 +212291,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vlan": { "type": "integer", @@ -211686,6 +212364,13 @@ }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vlan": { "type": "integer", "description": "The VLAN ID.\n", @@ -211768,8 +212453,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vlan": { "type": "integer", @@ -211850,8 +212534,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vlan": { "type": "integer", @@ -211930,6 +212613,13 @@ }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vlan": { "type": "integer", "description": "The VLAN ID.\n", @@ -212021,8 +212711,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vlan": { "type": "integer", @@ -212176,8 +212865,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -212258,6 +212946,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "type": { "type": "string", "description": "The directory type (`SimpleAD`, `ADConnector` or `MicrosoftAD` are accepted values). Defaults to `SimpleAD`.\n", @@ -212352,8 +213047,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -212600,8 +213294,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcSettings": { "$ref": "#/types/aws:directoryservice/ServiceRegionVpcSettings:ServiceRegionVpcSettings", @@ -212637,6 +213330,13 @@ }, "description": "Map of tags to assign to this resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcSettings": { "$ref": "#/types/aws:directoryservice/ServiceRegionVpcSettings:ServiceRegionVpcSettings", "description": "VPC information in the replicated Region. Detailed below.\n", @@ -212677,8 +213377,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcSettings": { "$ref": "#/types/aws:directoryservice/ServiceRegionVpcSettings:ServiceRegionVpcSettings", @@ -213070,8 +213769,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -213104,6 +213802,13 @@ "type": "string" }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -213146,8 +213851,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -213186,8 +213890,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -213219,6 +213922,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -213260,8 +213970,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -213377,8 +214086,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "username": { "type": "string", @@ -213498,6 +214206,13 @@ }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "username": { "type": "string", "description": "User name to be used to login to the endpoint database.\n" @@ -213620,8 +214335,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "username": { "type": "string", @@ -213680,8 +214394,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -213732,6 +214445,13 @@ "type": "string" }, "description": "Map of resource tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -213791,8 +214511,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -213853,8 +214572,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetEndpointArn": { "type": "string", @@ -213919,6 +214637,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "targetEndpointArn": { "type": "string", "description": "The Amazon Resource Name (ARN) string that uniquely identifies the target endpoint.\n" @@ -213989,8 +214714,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetEndpointArn": { "type": "string", @@ -214089,8 +214813,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcSecurityGroupIds": { "type": "array", @@ -214188,6 +214911,13 @@ }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcSecurityGroupIds": { "type": "array", "items": { @@ -214294,8 +215024,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcSecurityGroupIds": { "type": "array", @@ -214341,8 +215070,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -214380,6 +215108,13 @@ "type": "string" }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -214421,8 +215156,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -214495,8 +215229,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetEndpointArn": { "type": "string", @@ -214567,6 +215300,13 @@ }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "targetEndpointArn": { "type": "string", "description": "ARN that uniquely identifies the target endpoint.\n", @@ -214647,8 +215387,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetEndpointArn": { "type": "string", @@ -214866,8 +215605,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timestampColumnName": { "type": "string", @@ -215083,6 +215821,13 @@ }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "timestampColumnName": { "type": "string", "description": "Column to add with timestamp information to the endpoint data for an Amazon S3 target.\n" @@ -215312,8 +216057,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timestampColumnName": { "type": "string", @@ -215480,8 +216224,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcSecurityGroupIds": { "type": "array", @@ -215644,6 +216387,13 @@ }, "description": "A map of tags to assign to the DB cluster. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcSecurityGroupIds": { "type": "array", "items": { @@ -215812,8 +216562,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcSecurityGroupIds": { "type": "array", @@ -215936,8 +216685,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "writer": { "type": "boolean", @@ -216034,6 +216782,13 @@ "type": "string" }, "description": "A map of tags to assign to the instance. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -216155,8 +216910,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "writer": { "type": "boolean", @@ -216208,8 +216962,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -216253,6 +217006,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -216304,8 +217064,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -216523,8 +217282,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "timeouts": { "$ref": "#/types/aws:docdb/ElasticClusterTimeouts:ElasticClusterTimeouts" @@ -216680,8 +217438,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "timeouts": { "$ref": "#/types/aws:docdb/ElasticClusterTimeouts:ElasticClusterTimeouts" @@ -216753,8 +217510,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -216807,6 +217563,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -216870,8 +217633,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -217073,8 +217835,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -217114,6 +217875,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -217160,8 +217928,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -217247,8 +218014,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:drs/ReplicationConfigurationTemplateTimeouts:ReplicationConfigurationTemplateTimeouts" @@ -217442,8 +218208,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:drs/ReplicationConfigurationTemplateTimeouts:ReplicationConfigurationTemplateTimeouts" @@ -217798,8 +218563,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "ttl": { "$ref": "#/types/aws:dynamodb/TableTtl:TableTtl", @@ -217927,6 +218691,13 @@ }, "description": "A map of tags to populate on the created table. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "ttl": { "$ref": "#/types/aws:dynamodb/TableTtl:TableTtl", "description": "Configuration block for TTL. See below.\n" @@ -218057,8 +218828,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "ttl": { "$ref": "#/types/aws:dynamodb/TableTtl:TableTtl", @@ -218384,8 +219154,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -218420,6 +219189,13 @@ "type": "string" }, "description": "Map of tags to populate on the created table. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -218463,8 +219239,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -218709,8 +219484,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "temporaryRestoreDays": { "type": "integer", @@ -218763,6 +219537,13 @@ }, "description": "A map of tags to assign to the snapshot. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "temporaryRestoreDays": { "type": "integer", "description": "Specifies the number of days for which to temporarily restore an archived snapshot. Required for temporary restores only. The snapshot will be automatically re-archived after this period.\n" @@ -218833,8 +219614,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "temporaryRestoreDays": { "type": "integer", @@ -218915,8 +219695,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "temporaryRestoreDays": { "type": "integer", @@ -218984,6 +219763,13 @@ }, "description": "A map of tags for the snapshot.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "temporaryRestoreDays": { "type": "integer", "description": "Specifies the number of days for which to temporarily restore an archived snapshot. Required for temporary restores only. The snapshot will be automatically re-archived after this period.\n" @@ -219060,8 +219846,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "temporaryRestoreDays": { "type": "integer", @@ -219144,8 +219929,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "temporaryRestoreDays": { "type": "integer", @@ -219218,6 +220002,13 @@ }, "description": "A map of tags to assign to the snapshot.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "temporaryRestoreDays": { "type": "integer", "description": "Specifies the number of days for which to temporarily restore an archived snapshot. Required for temporary restores only. The snapshot will be automatically re-archived after this period.\n" @@ -219298,8 +220089,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "temporaryRestoreDays": { "type": "integer", @@ -219371,8 +220161,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "throughput": { "type": "integer", @@ -219445,6 +220234,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "throughput": { "type": "integer", "description": "The throughput that the volume supports, in MiB/s. Only valid for `type` of `gp3`.\n\n\u003e **NOTE:** When changing the `size`, `iops` or `type` of an instance, there are [considerations](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/considerations.html) to be aware of.\n" @@ -219518,8 +220314,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "throughput": { "type": "integer", @@ -219645,8 +220440,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "tpmSupport": { "type": "string", @@ -219756,6 +220550,13 @@ }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "tpmSupport": { "type": "string", "description": "If the image is configured for NitroTPM support, the value is `v2.0`. For more information, see [NitroTPM](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/nitrotpm.html) in the Amazon Elastic Compute Cloud User Guide.\n", @@ -219890,8 +220691,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "tpmSupport": { "type": "string", @@ -220038,8 +220838,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "tpmSupport": { "type": "string", @@ -220143,6 +220942,12 @@ "type": "string" }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } } }, "requiredInputs": [ @@ -220282,8 +221087,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "tpmSupport": { "type": "string", @@ -220415,8 +221219,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "tpmSupport": { "type": "string", @@ -220504,6 +221307,12 @@ "type": "string" }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } } }, "requiredInputs": [ @@ -220628,8 +221437,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "tpmSupport": { "type": "string", @@ -220853,8 +221661,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block\n" }, "tenancy": { "type": "string", @@ -220977,8 +221784,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block\n" }, "tenancy": { "type": "string", @@ -221058,8 +221864,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block\n" }, "tenancy": { "type": "string", @@ -221151,6 +221956,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block\n" + }, "tenancy": { "type": "string", "oneOf": [ @@ -221263,8 +222075,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block\n" }, "tenancy": { "type": "string", @@ -221307,8 +222118,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -221329,6 +222139,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcId": { "type": "string", "description": "The ID of the VPC to associate with the carrier gateway.\n", @@ -221361,8 +222178,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -221412,8 +222228,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -221458,6 +222273,13 @@ }, "description": "Tags to apply to the gateway. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "type": { "type": "string", "description": "The type of customer gateway. The only type AWS\nsupports at this time is \"ipsec.1\".\n", @@ -221511,8 +222333,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -221574,8 +222395,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -221623,6 +222443,13 @@ "type": "string" }, "description": "Map of tags to assign to this resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -221682,8 +222509,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -221737,8 +222563,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -221785,6 +222610,13 @@ "type": "string" }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -221839,8 +222671,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -221891,8 +222722,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -221933,6 +222763,13 @@ "type": "string" }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -221980,8 +222817,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -222042,8 +222878,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -222086,6 +222921,13 @@ }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcId": { "type": "string", "description": "VPC ID. **Note that changing the `vpc_id` will _not_ restore any default security group rules that were modified, added, or removed.** It will be left in its current state.\n", @@ -222143,8 +222985,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -222232,8 +223073,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "vpcId": { "type": "string", @@ -222301,6 +223141,12 @@ "additionalProperties": { "type": "string" } + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } } }, "requiredInputs": [ @@ -222385,8 +223231,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "vpcId": { "type": "string", @@ -222472,8 +223317,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "required": [ @@ -222527,6 +223371,12 @@ "additionalProperties": { "type": "string" } + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } } }, "stateInputs": { @@ -222605,8 +223455,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "type": "object" @@ -222654,8 +223503,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "required": [ @@ -222680,6 +223528,12 @@ "type": "string" }, "description": "A map of tags to assign to the resource.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } } }, "stateInputs": { @@ -222724,8 +223578,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "type": "object" @@ -222746,8 +223599,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -222766,6 +223618,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcId": { "type": "string", "description": "The VPC ID to create in.\n", @@ -222790,8 +223649,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -222888,8 +223746,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpc": { "type": "boolean", @@ -222960,6 +223817,13 @@ }, "description": "Map of tags to assign to the resource. Tags can only be applied to EIPs in a VPC. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpc": { "type": "boolean", "description": "Boolean if the EIP is in a VPC or not. Use `domain` instead.\nDefaults to `true` unless the region supports EC2-Classic.\n\n\u003e **NOTE:** You can specify either the `instance` ID or the `network_interface` ID, but not both. Including both will **not** return an error from the AWS API, but will have undefined behavior. See the relevant [AssociateAddress API Call][1] for more information.\n\n\u003e **NOTE:** Specifying both `public_ipv4_pool` and `address` won't cause an error but `address` will be used in the\ncase both options are defined as the api only requires one or the other.\n", @@ -223057,8 +223921,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpc": { "type": "boolean", @@ -223307,8 +224170,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetCapacitySpecification": { "$ref": "#/types/aws:ec2/FleetTargetCapacitySpecification:FleetTargetCapacitySpecification", @@ -223407,6 +224269,13 @@ }, "description": "Map of Fleet tags. To tag instances at launch, specify the tags in the Launch Template. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "targetCapacitySpecification": { "$ref": "#/types/aws:ec2/FleetTargetCapacitySpecification:FleetTargetCapacitySpecification", "description": "Nested argument containing target capacity configurations. Defined below.\n" @@ -223513,8 +224382,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetCapacitySpecification": { "$ref": "#/types/aws:ec2/FleetTargetCapacitySpecification:FleetTargetCapacitySpecification", @@ -223608,8 +224476,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "trafficType": { "type": "string", @@ -223694,6 +224561,13 @@ }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "trafficType": { "type": "string", "description": "The type of traffic to capture. Valid values: `ACCEPT`,`REJECT`, `ALL`.\n", @@ -223785,8 +224659,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "trafficType": { "type": "string", @@ -224080,8 +224953,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "tenancy": { "type": "string", @@ -224387,6 +225259,13 @@ }, "description": "Map of tags to assign to the resource. Note that these tags apply to the instance and not block storage devices. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "tenancy": { "type": "string", "oneOf": [ @@ -224702,8 +225581,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "tenancy": { "type": "string", @@ -224839,8 +225717,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -224861,6 +225738,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n\n\u003e **Note:** It's recommended to denote that the AWS Instance or Elastic IP depends on the Internet Gateway. For example:\n\n\u003c!--Start PulumiCodeChooser --\u003e\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as aws from \"@pulumi/aws\";\n\nconst gw = new aws.ec2.InternetGateway(\"gw\", {vpcId: main.id});\nconst foo = new aws.ec2.Instance(\"foo\", {}, {\n dependsOn: [gw],\n});\n```\n```python\nimport pulumi\nimport pulumi_aws as aws\n\ngw = aws.ec2.InternetGateway(\"gw\", vpc_id=main[\"id\"])\nfoo = aws.ec2.Instance(\"foo\", opts = pulumi.ResourceOptions(depends_on=[gw]))\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Aws = Pulumi.Aws;\n\nreturn await Deployment.RunAsync(() =\u003e \n{\n var gw = new Aws.Ec2.InternetGateway(\"gw\", new()\n {\n VpcId = main.Id,\n });\n\n var foo = new Aws.Ec2.Instance(\"foo\", new()\n {\n }, new CustomResourceOptions\n {\n DependsOn =\n {\n gw,\n },\n });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\tgw, err := ec2.NewInternetGateway(ctx, \"gw\", \u0026ec2.InternetGatewayArgs{\n\t\t\tVpcId: pulumi.Any(main.Id),\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\t_, err = ec2.NewInstance(ctx, \"foo\", nil, pulumi.DependsOn([]pulumi.Resource{\n\t\t\tgw,\n\t\t}))\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.aws.ec2.InternetGateway;\nimport com.pulumi.aws.ec2.InternetGatewayArgs;\nimport com.pulumi.aws.ec2.Instance;\nimport com.pulumi.aws.ec2.InstanceArgs;\nimport com.pulumi.resources.CustomResourceOptions;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n public static void main(String[] args) {\n Pulumi.run(App::stack);\n }\n\n public static void stack(Context ctx) {\n var gw = new InternetGateway(\"gw\", InternetGatewayArgs.builder()\n .vpcId(main.id())\n .build());\n\n var foo = new Instance(\"foo\", InstanceArgs.Empty, CustomResourceOptions.builder()\n .dependsOn(gw)\n .build());\n\n }\n}\n```\n```yaml\nresources:\n gw:\n type: aws:ec2:InternetGateway\n properties:\n vpcId: ${main.id}\n foo:\n type: aws:ec2:Instance\n options:\n dependson:\n - ${gw}\n```\n\u003c!--End PulumiCodeChooser --\u003e\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcId": { "type": "string", "description": "The VPC ID to create in. See the aws.ec2.InternetGatewayAttachment resource for an alternate way to attach an Internet Gateway to a VPC.\n" @@ -224889,8 +225773,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -224992,8 +225875,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -225028,6 +225910,13 @@ "type": "string" }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -225079,8 +225968,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -225589,8 +226477,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "updateDefaultVersion": { "type": "boolean", @@ -225777,6 +226664,13 @@ }, "description": "A map of tags to assign to the launch template. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "updateDefaultVersion": { "type": "boolean", "description": "Whether to update Default Version each update. Conflicts with `default_version`.\n" @@ -225968,8 +226862,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "updateDefaultVersion": { "type": "boolean", @@ -226077,8 +226970,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -226104,6 +226996,13 @@ }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcId": { "type": "string", "description": "Identifier of EC2 VPC.\n\nThe following arguments are optional:\n", @@ -226137,8 +227036,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -226245,8 +227143,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "version": { "type": "integer", @@ -226290,6 +227187,13 @@ "type": "string" }, "description": "Map of tags to assign to this resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -226339,8 +227243,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "version": { "type": "integer", @@ -226474,8 +227377,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -226534,6 +227436,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -226605,8 +227514,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -226656,8 +227564,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -226702,6 +227609,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcId": { "type": "string", "description": "The ID of the associated VPC.\n", @@ -226755,8 +227669,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -227069,8 +227982,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "waitForCompletion": { "type": "boolean", @@ -227116,6 +228028,13 @@ }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "waitForCompletion": { "type": "boolean", "description": "If enabled, the resource will wait for the Network Insights Analysis status to change to `succeeded` or `failed`. Setting this to `false` will skip the process. Default: `true`.\n" @@ -227200,8 +228119,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "waitForCompletion": { "type": "boolean", @@ -227266,8 +228184,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -227315,6 +228232,13 @@ "type": "string" }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -227378,8 +228302,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -227518,8 +228441,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -227653,6 +228575,13 @@ "type": "string" }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -227793,8 +228722,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -228030,8 +228958,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -228079,6 +229006,13 @@ "type": "string" }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -228136,8 +229070,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -228466,8 +229399,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -228504,6 +229436,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcId": { "type": "string", "description": "The VPC ID.\n", @@ -228550,8 +229489,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -228675,8 +229613,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -228736,6 +229673,13 @@ }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcId": { "type": "string", "description": "VPC ID. Defaults to the region's default VPC.\n", @@ -228799,8 +229743,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -229324,8 +230267,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetCapacity": { "type": "integer", @@ -229466,6 +230408,13 @@ }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "targetCapacity": { "type": "integer", "description": "The number of units to request. You can choose to set the\ntarget capacity in terms of instances or a performance characteristic that is\nimportant to your application workload, such as vCPUs, memory, or I/O.\n" @@ -229619,8 +230568,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetCapacity": { "type": "integer", @@ -229912,8 +230860,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "tenancy": { "type": "string", @@ -230254,6 +231201,13 @@ }, "description": "Map of tags to assign to the resource. Note that these tags apply to the instance and not block storage devices. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "tenancy": { "type": "string", "description": "Tenancy of the instance (if the instance is running in a VPC). An instance with a tenancy of `dedicated` runs on single-tenant hardware. The `host` tenancy is not supported for the import-instance command. Valid values are `default`, `dedicated`, and `host`.\n", @@ -230592,8 +231546,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "tenancy": { "type": "string", @@ -230735,8 +231688,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -230826,6 +231778,13 @@ }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcId": { "type": "string", "description": "The VPC ID.\n", @@ -230927,8 +231886,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -231120,8 +232078,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -231147,6 +232104,13 @@ "type": "string" }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -231180,8 +232144,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -231386,8 +232349,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "trafficMirrorFilterId": { "type": "string", @@ -231438,6 +232400,13 @@ }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "trafficMirrorFilterId": { "type": "string", "description": "ID of the traffic mirror filter to be used\n" @@ -231497,8 +232466,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "trafficMirrorFilterId": { "type": "string", @@ -231555,8 +232523,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -231591,6 +232558,13 @@ "type": "string" }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n\n**NOTE:** Either `network_interface_id` or `network_load_balancer_arn` should be specified and both should not be specified together\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -231636,8 +232610,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -231839,8 +232812,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -231917,6 +232889,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -232017,8 +232996,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -232080,8 +233058,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -232135,6 +233112,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -232199,8 +233183,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -232361,8 +233344,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcEndpointType": { "type": "string", @@ -232455,6 +233437,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcEndpointType": { "type": "string", "description": "The VPC endpoint type, `Gateway`, `GatewayLoadBalancer`, or `Interface`. Defaults to `Gateway`.\n", @@ -232579,8 +233568,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcEndpointType": { "type": "string", @@ -232941,8 +233929,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -233003,6 +233990,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -233100,8 +234094,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -233259,8 +234252,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "tier": { "type": "string", @@ -233300,6 +234292,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "tier": { "type": "string", "description": "specifies the IPAM tier. Valid options include `free` and `advanced`. Default is `advanced`.\n" @@ -233362,8 +234361,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "tier": { "type": "string", @@ -233527,8 +234525,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -233612,6 +234609,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -233712,8 +234716,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -234058,8 +235061,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -234088,6 +235090,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -234135,8 +235144,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -234189,8 +235197,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -234219,6 +235226,13 @@ "type": "string" }, "description": "A map of tags to add to the IPAM resource discovery association resource.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -234272,8 +235286,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -234320,8 +235333,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "required": [ @@ -234348,6 +235360,12 @@ "type": "string" }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } } }, "requiredInputs": [ @@ -234394,8 +235412,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "type": "object" @@ -234684,8 +235701,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -234737,6 +235753,13 @@ }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcId": { "type": "string", "description": "The ID of the requester VPC.\n", @@ -234793,8 +235816,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -234848,8 +235870,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -234891,6 +235912,13 @@ }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcPeeringConnectionId": { "type": "string", "description": "The VPC Peering Connection ID to manage.\n", @@ -234943,8 +235971,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -235030,8 +236057,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "transitGatewayAttachmentId": { "type": "string", @@ -235389,6 +236415,13 @@ }, "description": "Tags to apply to the connection. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "transitGatewayId": { "type": "string", "description": "The ID of the EC2 Transit Gateway.\n" @@ -235697,8 +236730,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "transitGatewayAttachmentId": { "type": "string", @@ -236061,8 +237093,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -236093,6 +237124,13 @@ }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcId": { "type": "string", "description": "The VPC ID to create in.\n" @@ -236127,8 +237165,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -236411,8 +237448,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "transportProtocol": { "type": "string", @@ -236508,6 +237544,13 @@ }, "description": "A mapping of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "transportProtocol": { "type": "string", "description": "The transport protocol to be used by the VPN session. Default value is `udp`.\n", @@ -236614,8 +237657,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "transportProtocol": { "type": "string", @@ -236817,8 +237859,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "transitGatewayDefaultRouteTableAssociation": { "type": "boolean", @@ -236855,6 +237896,13 @@ }, "description": "Key-value tags for the EC2 Transit Gateway Connect. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "transitGatewayDefaultRouteTableAssociation": { "type": "boolean", "description": "Boolean whether the Connect should be associated with the EC2 Transit Gateway association default route table. This cannot be configured or perform drift detection with Resource Access Manager shared EC2 Transit Gateways. Default value: `true`.\n" @@ -236898,8 +237946,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "transitGatewayDefaultRouteTableAssociation": { "type": "boolean", @@ -236968,8 +238015,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "transitGatewayAddress": { "type": "string", @@ -237017,6 +238063,13 @@ }, "description": "Key-value tags for the EC2 Transit Gateway Connect Peer. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "transitGatewayAddress": { "type": "string", "description": "The IP address assigned to Transit Gateway, which will be used as tunnel endpoint. This address must be from associated Transit Gateway CIDR block. The address must be from the same address family as `peer_address`. If not set explicitly, it will be selected from associated Transit Gateway CIDR blocks\n", @@ -237081,8 +238134,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "transitGatewayAddress": { "type": "string", @@ -237155,8 +238207,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:ec2transitgateway/InstanceConnectEndpointTimeouts:InstanceConnectEndpointTimeouts" @@ -237266,8 +238317,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:ec2transitgateway/InstanceConnectEndpointTimeouts:InstanceConnectEndpointTimeouts" @@ -237374,8 +238424,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "transitGatewayId": { "type": "string", @@ -237411,6 +238460,13 @@ }, "description": "Key-value tags for the EC2 Transit Gateway Multicast Domain. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "transitGatewayId": { "type": "string", "description": "EC2 Transit Gateway identifier. The EC2 Transit Gateway must have `multicast_support` enabled.\n", @@ -237458,8 +238514,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "transitGatewayId": { "type": "string", @@ -237699,8 +238754,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "transitGatewayId": { "type": "string", @@ -237743,6 +238797,13 @@ }, "description": "Key-value tags for the EC2 Transit Gateway Peering Attachment. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "transitGatewayId": { "type": "string", "description": "Identifier of EC2 Transit Gateway.\n", @@ -237792,8 +238853,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "transitGatewayId": { "type": "string", @@ -237830,8 +238890,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "transitGatewayAttachmentId": { "type": "string", @@ -237858,6 +238917,13 @@ }, "description": "Key-value tags for the EC2 Transit Gateway Peering Attachment. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "transitGatewayAttachmentId": { "type": "string", "description": "The ID of the EC2 Transit Gateway Peering Attachment to manage.\n", @@ -237893,8 +238959,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "transitGatewayAttachmentId": { "type": "string", @@ -237937,8 +239002,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "transitGatewayId": { "type": "string", @@ -237959,6 +239023,13 @@ }, "description": "Key-value tags for the EC2 Transit Gateway Policy Table. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "transitGatewayId": { "type": "string", "description": "EC2 Transit Gateway identifier.\n", @@ -237991,8 +239062,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "transitGatewayId": { "type": "string", @@ -238254,8 +239324,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "transitGatewayId": { "type": "string", @@ -238277,6 +239346,13 @@ }, "description": "Key-value tags for the EC2 Transit Gateway Route Table. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "transitGatewayId": { "type": "string", "description": "Identifier of EC2 Transit Gateway.\n", @@ -238313,8 +239389,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "transitGatewayId": { "type": "string", @@ -238531,8 +239606,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "transitGatewayCidrBlocks": { "type": "array", @@ -238590,6 +239664,13 @@ }, "description": "Key-value tags for the EC2 Transit Gateway. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "transitGatewayCidrBlocks": { "type": "array", "items": { @@ -238663,8 +239744,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "transitGatewayCidrBlocks": { "type": "array", @@ -238715,8 +239795,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "transitGatewayDefaultRouteTableAssociation": { "type": "boolean", @@ -238775,6 +239854,13 @@ }, "description": "Key-value tags for the EC2 Transit Gateway VPC Attachment. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "transitGatewayDefaultRouteTableAssociation": { "type": "boolean", "description": "Boolean whether the VPC Attachment should be associated with the EC2 Transit Gateway association default route table. This cannot be configured or perform drift detection with Resource Access Manager shared EC2 Transit Gateways. Default value: `true`.\n" @@ -238833,8 +239919,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "transitGatewayDefaultRouteTableAssociation": { "type": "boolean", @@ -238896,8 +239981,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "transitGatewayAttachmentId": { "type": "string", @@ -238943,6 +240027,13 @@ }, "description": "Key-value tags for the EC2 Transit Gateway VPC Attachment. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "transitGatewayAttachmentId": { "type": "string", "description": "The ID of the EC2 Transit Gateway Attachment to manage.\n", @@ -238994,8 +240085,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "transitGatewayAttachmentId": { "type": "string", @@ -239392,8 +240482,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -239435,6 +240524,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -239489,8 +240585,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -239608,8 +240703,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -239638,6 +240732,13 @@ "type": "string" }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -239682,8 +240783,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -239825,8 +240925,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -239852,6 +240951,13 @@ "type": "string" }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -239886,8 +240992,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -239931,8 +241036,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -239968,6 +241072,13 @@ "type": "string" }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -240009,8 +241120,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -240214,8 +241324,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "taskDefinition": { "type": "string", @@ -240367,6 +241476,13 @@ }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "taskDefinition": { "type": "string", "description": "Family and revision (`family:revision`) or full ARN of the task definition that you want to run in your service. Required unless using the `EXTERNAL` deployment controller. If a revision is not specified, the latest `ACTIVE` revision is used.\n" @@ -240515,8 +241631,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "taskDefinition": { "type": "string", @@ -240700,8 +241815,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "taskRoleArn": { "type": "string", @@ -240819,6 +241933,13 @@ }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "taskRoleArn": { "type": "string", "description": "ARN of IAM role that allows your Amazon ECS container task to make calls to other AWS services.\n", @@ -240951,8 +242072,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "taskRoleArn": { "type": "string", @@ -241052,8 +242172,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "taskDefinition": { "type": "string", @@ -241153,6 +242272,13 @@ }, "description": "A map of tags to assign to the file system. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. If you have set `copy_tags_to_backups` to true, and you specify one or more tags, no existing file system tags are copied from the file system to the backup.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "taskDefinition": { "type": "string", "description": "The family and revision (`family:revision`) or full ARN of the task definition that you want to run in your service.\n\nThe following arguments are optional:\n", @@ -241258,8 +242384,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "taskDefinition": { "type": "string", @@ -241320,8 +242445,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -241354,6 +242478,13 @@ "type": "string" }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -241400,8 +242531,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -241550,8 +242680,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "throughputMode": { "type": "string", @@ -241622,6 +242751,13 @@ }, "description": "A map of tags to assign to the file system. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "throughputMode": { "type": "string", "description": "Throughput mode for the file system. Defaults to `bursting`. Valid values: `bursting`, `provisioned`, or `elastic`. When using `provisioned`, also set `provisioned_throughput_in_mibps`.\n" @@ -241713,8 +242849,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "throughputMode": { "type": "string", @@ -242059,8 +243194,7 @@ "additionalProperties": { "type": "string" }, - "description": "(Optional) Key-value map of resource tags, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "(Optional) Key-value map of resource tags, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -242106,6 +243240,13 @@ }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "(Optional) Key-value map of resource tags, including those inherited from the provider `default_tags` configuration block.\n" + }, "type": { "type": "string", "description": "Defaults to STANDARD which provides the standard workflow. EC2_LINUX, EC2_WINDOWS, FARGATE_LINUX types disallow users to input a username or groups, and prevent associations.\n", @@ -242164,8 +243305,7 @@ "additionalProperties": { "type": "string" }, - "description": "(Optional) Key-value map of resource tags, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "(Optional) Key-value map of resource tags, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -242343,8 +243483,7 @@ "additionalProperties": { "type": "string" }, - "description": "(Optional) Key-value map of resource tags, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "(Optional) Key-value map of resource tags, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -242403,6 +243542,13 @@ "type": "string" }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "(Optional) Key-value map of resource tags, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -242475,8 +243621,7 @@ "additionalProperties": { "type": "string" }, - "description": "(Optional) Key-value map of resource tags, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "(Optional) Key-value map of resource tags, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -242575,8 +243720,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "version": { "type": "string", @@ -242652,6 +243796,13 @@ }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "version": { "type": "string", "description": "Desired Kubernetes master version. If you do not specify a value, the latest available version at resource creation is used and no upgrades will occur except those automatically triggered by EKS. The value must be configured and increased to upgrade the version when desired. Downgrades are not supported by EKS.\n" @@ -242760,8 +243911,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "version": { "type": "string", @@ -242824,8 +243974,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -242875,6 +244024,13 @@ "type": "string" }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -242936,8 +244092,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -242974,8 +244129,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -243002,6 +244156,13 @@ "type": "string" }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -243041,8 +244202,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -243147,8 +244307,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "taints": { "type": "array", @@ -243272,6 +244431,13 @@ }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "taints": { "type": "array", "items": { @@ -243403,8 +244569,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "taints": { "type": "array", @@ -243464,8 +244629,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -243547,8 +244711,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -243709,8 +244872,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "transitEncryptionEnabled": { "type": "boolean", @@ -243880,6 +245042,13 @@ }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "transitEncryptionEnabled": { "type": "boolean", "description": "Enable encryption in-transit. Supported only with Memcached versions `1.6.12` and later, running in a VPC. See the [ElastiCache in-transit encryption](https://docs.aws.amazon.com/AmazonElastiCache/latest/mem-ug/in-transit-encryption-mc.html) documentation for more details.\n", @@ -244052,8 +245221,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "transitEncryptionEnabled": { "type": "boolean", @@ -244315,8 +245483,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -244356,6 +245523,13 @@ "type": "string" }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -244403,8 +245577,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -244608,8 +245781,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "transitEncryptionEnabled": { "type": "boolean", @@ -244831,6 +246003,13 @@ }, "description": "Map of tags to assign to the resource. Adding tags to this resource will add or overwrite any existing tags on the clusters in the replication group and not to the group itself. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "transitEncryptionEnabled": { "type": "boolean", "description": "Whether to enable encryption in transit.\nChanging this argument with an `engine_version` \u003c `7.0.5` will force a replacement.\nEngine versions prior to `7.0.5` only allow this transit encryption to be configured during creation of the replication group.\n" @@ -245057,8 +246236,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "transitEncryptionEnabled": { "type": "boolean", @@ -245176,8 +246354,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "timeouts": { "$ref": "#/types/aws:elasticache/ServerlessCacheTimeouts:ServerlessCacheTimeouts" @@ -245373,8 +246550,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "timeouts": { "$ref": "#/types/aws:elasticache/ServerlessCacheTimeouts:ServerlessCacheTimeouts" @@ -245421,8 +246597,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -245461,6 +246636,13 @@ "type": "string" }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -245501,8 +246683,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -245554,8 +246735,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "userId": { "type": "string", @@ -245608,6 +246788,12 @@ }, "description": "A list of tags to be added to this resource. A tag is a key-value pair.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, "userId": { "type": "string", "description": "The ID of the user.\n", @@ -245668,8 +246854,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "userId": { "type": "string", @@ -245708,8 +246893,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "userGroupId": { "type": "string", @@ -245742,6 +246926,13 @@ }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "userGroupId": { "type": "string", "description": "The ID of the user group.\n\nThe following arguments are optional:\n", @@ -245783,8 +246974,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "userGroupId": { "type": "string", @@ -245881,8 +247071,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -245909,6 +247098,13 @@ "type": "string" }, "description": "Key-value map of tags for the Elastic Beanstalk Application. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -245942,8 +247138,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -245992,8 +247187,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -246057,6 +247251,13 @@ "type": "string" }, "description": "Key-value map of tags for the Elastic Beanstalk Application Version. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -246129,8 +247330,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -246349,8 +247549,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "templateName": { "type": "string", @@ -246450,6 +247649,13 @@ }, "description": "A set of tags to apply to the Environment. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "templateName": { "type": "string", "description": "The name of the Elastic Beanstalk Configuration\ntemplate to use in deployment\n" @@ -246586,8 +247792,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "templateName": { "type": "string", @@ -246711,8 +247916,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcOptions": { "$ref": "#/types/aws:elasticsearch/DomainVpcOptions:DomainVpcOptions", @@ -246816,6 +248020,13 @@ }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcOptions": { "$ref": "#/types/aws:elasticsearch/DomainVpcOptions:DomainVpcOptions", "description": "Configuration block for VPC related options. Adding or removing this configuration forces a new resource ([documentation](https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-vpc.html#es-vpc-limitations)). Detailed below.\n", @@ -246925,8 +248136,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcOptions": { "$ref": "#/types/aws:elasticsearch/DomainVpcOptions:DomainVpcOptions", @@ -247796,8 +249006,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "zoneId": { "type": "string", @@ -247910,6 +249119,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n\nExactly one of `availability_zones` or `subnets` must be specified: this\ndetermines if the ELB exists in a VPC or in EC2-classic.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -248024,8 +249240,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "zoneId": { "type": "string", @@ -248611,8 +249826,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "terminationProtection": { "type": "boolean", @@ -248799,6 +250013,13 @@ }, "description": "list of tags to apply to the EMR Cluster. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "terminationProtection": { "type": "boolean", "description": "Switch on/off termination protection (default is `false`, except when using multiple master nodes). Before attempting to destroy the resource when termination protection is enabled, this configuration must be applied with its value set to `false`.\n" @@ -248994,8 +250215,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "terminationProtection": { "type": "boolean", @@ -249498,8 +250718,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "url": { "type": "string", @@ -249583,6 +250802,12 @@ }, "description": "list of tags to apply to the EMR Cluster. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, "userRole": { "type": "string", "description": "The IAM user role that users and groups assume when logged in to an Amazon EMR Studio. Only specify a User Role when you use Amazon Web Services SSO authentication. The permissions attached to the User Role can be scoped down for each user or group using session policies.\n", @@ -249670,8 +250895,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "url": { "type": "string", @@ -249820,8 +251044,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -249853,6 +251076,13 @@ }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n", "willReplaceOnChanges": true + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -249893,9 +251123,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead.", - "willReplaceOnChanges": true + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -249928,8 +251156,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -249955,6 +251182,13 @@ "type": "string" }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -249989,8 +251223,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -250054,8 +251287,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -250121,6 +251353,13 @@ }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "type": { "type": "string", "description": "The type of application you want to start, such as `spark` or `hive`.\n", @@ -250190,8 +251429,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -250267,8 +251505,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "valueType": { "type": "string", @@ -250333,6 +251570,13 @@ }, "description": "Tags to apply to the feature. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "variations": { "type": "array", "items": { @@ -250412,8 +251656,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "valueType": { "type": "string", @@ -250506,8 +251749,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -250570,6 +251812,13 @@ "type": "string" }, "description": "Tags to apply to the launch. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -250654,8 +251903,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -250728,8 +251976,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -250765,6 +252012,13 @@ "type": "string" }, "description": "Tags to apply to the project. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -250831,8 +252085,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -250885,8 +252138,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -250921,6 +252173,13 @@ "type": "string" }, "description": "Tags to apply to the segment. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -250976,8 +252235,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -251089,8 +252347,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "tickerplantLogConfigurations": { "type": "array", @@ -251215,6 +252472,13 @@ }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "tickerplantLogConfigurations": { "type": "array", "items": { @@ -251359,8 +252623,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "tickerplantLogConfigurations": { "type": "array", @@ -251423,8 +252686,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -251456,6 +252718,13 @@ "type": "string" }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -251502,8 +252771,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -251582,8 +252850,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -251655,6 +252922,13 @@ "type": "string" }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -251743,8 +253017,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -251811,8 +253084,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "transitGatewayConfiguration": { "$ref": "#/types/aws:finspace/KxEnvironmentTransitGatewayConfiguration:KxEnvironmentTransitGatewayConfiguration", @@ -251857,6 +253129,13 @@ }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "transitGatewayConfiguration": { "$ref": "#/types/aws:finspace/KxEnvironmentTransitGatewayConfiguration:KxEnvironmentTransitGatewayConfiguration", "description": "Transit gateway and network configuration that is used to connect the KX environment to an internal network. Defined below.\n" @@ -251926,8 +253205,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "transitGatewayConfiguration": { "$ref": "#/types/aws:finspace/KxEnvironmentTransitGatewayConfiguration:KxEnvironmentTransitGatewayConfiguration", @@ -251995,8 +253273,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -252039,6 +253316,13 @@ "type": "string" }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. You can add up to 50 tags to a scaling group.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -252108,8 +253392,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -252146,8 +253429,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -252178,6 +253460,13 @@ "type": "string" }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -252217,8 +253506,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -252294,8 +253582,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "type": { "type": "string", @@ -252360,6 +253647,12 @@ }, "description": "A list of key-value pairs to label the volume. You can add up to 50 tags to a volume\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, "type": { "type": "string", "description": "The type of file system volume. Currently, FinSpace only supports the `NAS_1` volume type. When you select the `NAS_1` volume type, you must also provide `nas1_configuration`.\n", @@ -252448,8 +253741,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "type": { "type": "string", @@ -252500,8 +253792,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "targets": { "type": "array", @@ -252553,6 +253844,12 @@ "description": "Key-value mapping of tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n", "willReplaceOnChanges": true }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, "targets": { "type": "array", "items": { @@ -252608,9 +253905,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead.", - "willReplaceOnChanges": true + } }, "targets": { "type": "array", @@ -252729,8 +254024,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -252804,6 +254098,13 @@ "type": "string" }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -252886,8 +254187,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -252917,8 +254217,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "timeouts": { "$ref": "#/types/aws:fms/ResourceSetTimeouts:ResourceSetTimeouts" @@ -252970,8 +254269,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "timeouts": { "$ref": "#/types/aws:fms/ResourceSetTimeouts:ResourceSetTimeouts" @@ -253011,8 +254309,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -253043,6 +254340,13 @@ }, "description": "A map of tags to assign to the file system. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. If you have set `copy_tags_to_backups` to true, and you specify one or more tags, no existing file system tags are copied from the file system to the backup.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "volumeId": { "type": "string", "description": "The ID of the volume to back up. Required if backing up a ONTAP Volume.\n", @@ -253081,8 +254385,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -253147,8 +254450,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -253199,6 +254501,13 @@ "type": "string" }, "description": "A map of tags to assign to the data repository association. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -253259,8 +254568,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -253357,8 +254665,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "vpcId": { "type": "string", @@ -253442,6 +254749,12 @@ "type": "string" }, "description": "A map of tags to assign to the file cache. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } } }, "requiredInputs": [ @@ -253548,8 +254861,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "vpcId": { "type": "string", @@ -253684,8 +254996,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -253823,6 +255134,13 @@ }, "description": "A map of tags to assign to the file system. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "weeklyMaintenanceStartTime": { "type": "string", "description": "The preferred start time (in `d:HH:MM` format) to perform weekly maintenance, in the UTC time zone.\n" @@ -253968,8 +255286,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -254090,8 +255407,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "throughputCapacity": { "type": "integer", @@ -254214,6 +255530,13 @@ }, "description": "A map of tags to assign to the file system. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "throughputCapacity": { "type": "integer", "description": "Sets the throughput capacity (in MBps) for the file system that you're creating. Valid values are `128`, `256`, `512`, `1024`, `2048`, and `4096`. This parameter is only supported when not using the ha_pairs parameter. Either throughput_capacity or throughput_capacity_per_ha_pair must be specified.\n" @@ -254348,8 +255671,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "throughputCapacity": { "type": "integer", @@ -254421,8 +255743,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "uuid": { "type": "string", @@ -254468,6 +255789,13 @@ "type": "string" }, "description": "A map of tags to assign to the storage virtual machine. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -254526,8 +255854,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "uuid": { "type": "string", @@ -254620,8 +255947,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "tieringPolicy": { "$ref": "#/types/aws:fsx/OntapVolumeTieringPolicy:OntapVolumeTieringPolicy", @@ -254722,6 +256048,13 @@ }, "description": "A map of tags to assign to the volume. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "tieringPolicy": { "$ref": "#/types/aws:fsx/OntapVolumeTieringPolicy:OntapVolumeTieringPolicy", "description": "The data tiering policy for an FSx for ONTAP volume. See Tiering Policy below.\n" @@ -254826,8 +256159,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "tieringPolicy": { "$ref": "#/types/aws:fsx/OntapVolumeTieringPolicy:OntapVolumeTieringPolicy", @@ -254970,8 +256302,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "throughputCapacity": { "type": "integer", @@ -255099,6 +256430,13 @@ }, "description": "A map of tags to assign to the file system. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "throughputCapacity": { "type": "integer", "description": "Throughput (MB/s) of the file system. Valid values depend on `deployment_type`. Must be one of `64`, `128`, `256`, `512`, `1024`, `2048`, `3072`, `4096` for `SINGLE_AZ_1`. Must be one of `160`, `320`, `640`, `1280`, `2560`, `3840`, `5120`, `7680`, `10240` for `SINGLE_AZ_2`.\n" @@ -255240,8 +256578,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "throughputCapacity": { "type": "integer", @@ -255285,8 +256622,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "volumeId": { "type": "string", @@ -255312,6 +256648,13 @@ }, "description": "A map of tags to assign to the file system. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. If you have set `copy_tags_to_backups` to true, and you specify one or more tags, no existing file system tags are copied from the file system to the backup.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "volumeId": { "type": "string", "description": "The ID of the volume to snapshot. This can be the root volume or a child volume.\n", @@ -255347,8 +256690,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "volumeId": { "type": "string", @@ -255422,8 +256764,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "userAndGroupQuotas": { "type": "array", @@ -255499,6 +256840,13 @@ }, "description": "A map of tags to assign to the file system. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "userAndGroupQuotas": { "type": "array", "items": { @@ -255578,8 +256926,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "userAndGroupQuotas": { "type": "array", @@ -255715,8 +257062,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "throughputCapacity": { "type": "integer", @@ -255844,6 +257190,13 @@ }, "description": "A map of tags to assign to the file system. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "throughputCapacity": { "type": "integer", "description": "Throughput (megabytes per second) of the file system in power of 2 increments. Minimum of `8` and maximum of `2048`.\n\nThe following arguments are optional:\n" @@ -255985,8 +257338,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "throughputCapacity": { "type": "integer", @@ -256035,8 +257387,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -256064,6 +257415,13 @@ "type": "string" }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -256100,8 +257458,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -256138,8 +257495,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "version": { "type": "string", @@ -256175,6 +257531,13 @@ }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "version": { "type": "string", "description": "Version that is associated with this build.\n" @@ -256217,8 +257580,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "version": { "type": "string", @@ -256323,8 +257685,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -256411,6 +257772,13 @@ "type": "string" }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -256517,8 +257885,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -256582,8 +257949,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "vpcSubnets": { "type": "array", @@ -256654,6 +258020,12 @@ }, "description": "Key-value map of resource tags\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, "vpcSubnets": { "type": "array", "items": { @@ -256733,8 +258105,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "vpcSubnets": { "type": "array", @@ -256793,8 +258164,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeoutInSeconds": { "type": "integer", @@ -256841,6 +258211,13 @@ }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "timeoutInSeconds": { "type": "integer", "description": "Maximum time a game session request can remain in the queue.\n" @@ -256892,8 +258269,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeoutInSeconds": { "type": "integer", @@ -256991,8 +258367,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -257075,6 +258450,13 @@ "type": "string" }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -257170,8 +258552,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -257203,8 +258584,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -257229,6 +258609,13 @@ "additionalProperties": { "type": "string" } + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -257262,8 +258649,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -257296,8 +258682,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "version": { "type": "string", @@ -257331,6 +258716,13 @@ }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "version": { "type": "string", "description": "Version that is associated with this script.\n" @@ -257368,8 +258760,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "version": { "type": "string", @@ -257418,8 +258809,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -257448,6 +258838,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -257486,8 +258883,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -257627,8 +259023,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -257670,6 +259065,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -257730,8 +259132,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -257782,8 +259183,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -257865,8 +259265,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -257925,8 +259324,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -257967,6 +259365,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -258023,8 +259428,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -258499,8 +259903,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetDatabase": { "$ref": "#/types/aws:glue/CatalogDatabaseTargetDatabase:CatalogDatabaseTargetDatabase", @@ -258559,6 +259962,13 @@ }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "targetDatabase": { "$ref": "#/types/aws:glue/CatalogDatabaseTargetDatabase:CatalogDatabaseTargetDatabase", "description": "Configuration block for a target database for resource linking. See `target_database` below.\n", @@ -258620,8 +260030,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetDatabase": { "$ref": "#/types/aws:glue/CatalogDatabaseTargetDatabase:CatalogDatabaseTargetDatabase", @@ -259012,8 +260421,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -259066,6 +260474,13 @@ "type": "string" }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -259124,8 +260539,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -259261,8 +260675,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -259392,6 +260805,13 @@ "type": "string" }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -259530,8 +260950,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -259641,8 +261060,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetTable": { "$ref": "#/types/aws:glue/DataQualityRulesetTargetTable:DataQualityRulesetTargetTable", @@ -259679,6 +261097,13 @@ }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "targetTable": { "$ref": "#/types/aws:glue/DataQualityRulesetTargetTable:DataQualityRulesetTargetTable", "description": "A Configuration block specifying a target table associated with the data quality ruleset. See `target_table` below.\n", @@ -259732,8 +261157,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetTable": { "$ref": "#/types/aws:glue/DataQualityRulesetTargetTable:DataQualityRulesetTargetTable", @@ -259844,8 +261268,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -259955,6 +261378,13 @@ }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "workerType": { "type": "string", "description": "The type of predefined worker that is allocated to this endpoint. Accepts a value of Standard, G.1X, or G.2X.\n", @@ -260072,8 +261502,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -260188,8 +261617,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeout": { "type": "integer", @@ -260296,6 +261724,13 @@ }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "timeout": { "type": "integer", "description": "The job timeout in minutes. The default is 2880 minutes (48 hours) for `glueetl` and `pythonshell` jobs, and null (unlimited) for `gluestreaming` jobs.\n" @@ -260402,8 +261837,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeout": { "type": "integer", @@ -260486,8 +261920,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeout": { "type": "integer", @@ -260559,6 +261992,13 @@ }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "timeout": { "type": "integer", "description": "The ML Transform timeout in minutes. The default is 2880 minutes (48 hours).\n" @@ -260644,8 +262084,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeout": { "type": "integer", @@ -260927,8 +262366,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -260952,6 +262390,13 @@ "type": "string" }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -260985,8 +262430,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -261094,8 +262538,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -261143,6 +262586,13 @@ "type": "string" }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -261211,8 +262661,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -261327,8 +262776,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -261394,6 +262842,13 @@ }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "type": { "type": "string", "description": "The type of trigger. Valid values are `CONDITIONAL`, `EVENT`, `ON_DEMAND`, and `SCHEDULED`.\n", @@ -261471,8 +262926,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -261669,8 +263123,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -261705,6 +263158,13 @@ "type": "string" }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -261746,8 +263206,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -262003,8 +263462,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcConfiguration": { "$ref": "#/types/aws:grafana/WorkspaceVpcConfiguration:WorkspaceVpcConfiguration", @@ -262100,6 +263558,13 @@ }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcConfiguration": { "$ref": "#/types/aws:grafana/WorkspaceVpcConfiguration:WorkspaceVpcConfiguration", "description": "The configuration settings for an Amazon VPC that contains data sources for your Grafana workspace to connect to. See VPC Configuration below.\n" @@ -262205,8 +263670,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcConfiguration": { "$ref": "#/types/aws:grafana/WorkspaceVpcConfiguration:WorkspaceVpcConfiguration", @@ -262560,8 +264024,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -262590,6 +264053,13 @@ "type": "string" }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -262627,8 +264097,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -262762,8 +264231,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -262808,6 +264276,13 @@ "type": "string" }, "description": "The tags that you want to add to the Filter resource. A tag consists of a key and a value. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -262861,8 +264336,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -262907,8 +264381,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -262949,6 +264422,13 @@ "type": "string" }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -262998,8 +264478,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -263095,8 +264574,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "required": [ @@ -263175,8 +264653,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "type": "object" @@ -263601,8 +265078,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -263643,6 +265119,13 @@ "type": "string" }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -263692,8 +265175,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -264336,8 +265818,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "uniqueId": { "type": "string", @@ -264387,6 +265868,13 @@ "type": "string" }, "description": "Map of resource tags for the IAM Instance Profile. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -264440,8 +265928,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "uniqueId": { "type": "string", @@ -264477,8 +265964,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "thumbprintLists": { "type": "array", @@ -264514,6 +266000,13 @@ }, "description": "Map of resource tags for the IAM OIDC provider. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "thumbprintLists": { "type": "array", "items": { @@ -264558,8 +266051,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "thumbprintLists": { "type": "array", @@ -264629,8 +266121,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -264687,6 +266178,13 @@ "type": "string" }, "description": "Map of resource tags for the IAM Policy. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -264757,8 +266255,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -265000,8 +266497,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "uniqueId": { "type": "string", @@ -265083,6 +266579,13 @@ "type": "string" }, "description": "Key-value mapping of tags for the IAM role. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -265168,8 +266671,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "uniqueId": { "type": "string", @@ -265389,8 +266891,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "validUntil": { "type": "string", @@ -265420,6 +266921,13 @@ "type": "string" }, "description": "Map of resource tags for the IAM SAML provider. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -265453,8 +266961,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "validUntil": { "type": "string", @@ -265543,8 +267050,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "uploadDate": { "type": "string", @@ -265599,6 +267105,13 @@ "type": "string" }, "description": "Map of resource tags for the server certificate. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n\n\u003e **NOTE:** AWS performs behind-the-scenes modifications to some certificate files if they do not adhere to a specific format. These modifications will result in this provider forever believing that it needs to update the resources since the local and AWS file contents will not match after theses modifications occur. In order to prevent this from happening you must ensure that all your PEM-encoded files use UNIX line-breaks and that `certificate_body` contains only one certificate. All other certificates should go in `certificate_chain`. It is common for some Certificate Authorities to issue certificate files that have DOS line-breaks and that are actually multiple certificates concatenated together in order to form a full certificate chain.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -265659,8 +267172,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "uploadDate": { "type": "string", @@ -265713,8 +267225,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "uniqueId": { "type": "string", @@ -265751,6 +267262,13 @@ "type": "string" }, "description": "Key-value mapping of tags for the IAM role. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -265801,8 +267319,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "uniqueId": { "type": "string", @@ -266103,8 +267620,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "uniqueId": { "type": "string", @@ -266140,6 +267656,13 @@ "type": "string" }, "description": "Key-value mapping of tags for the IAM user. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -266177,8 +267700,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "uniqueId": { "type": "string", @@ -266547,8 +268069,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "userName": { "type": "string", @@ -266581,6 +268102,13 @@ }, "description": "Map of resource tags for the virtual mfa device. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "virtualMfaDeviceName": { "type": "string", "description": "The name of the virtual MFA device. Use with path to uniquely identify a virtual MFA device.\n", @@ -266626,8 +268154,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "userName": { "type": "string", @@ -267087,8 +268614,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -267165,6 +268691,13 @@ }, "description": "Key-value map of resource tags for the component. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "uri": { "type": "string", "description": "S3 URI with data of the component. Exactly one of `data` and `uri` can be specified.\n\n\u003e **NOTE:** Updating `data` or `uri` requires specifying a new `version`. This causes replacement of the resource. The `skip_destroy` argument can be used to retain the old version.\n", @@ -267253,8 +268786,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -267352,8 +268884,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetRepository": { "$ref": "#/types/aws:imagebuilder/ContainerRecipeTargetRepository:ContainerRecipeTargetRepository", @@ -267444,6 +268975,13 @@ }, "description": "Key-value map of resource tags for the container recipe. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "targetRepository": { "$ref": "#/types/aws:imagebuilder/ContainerRecipeTargetRepository:ContainerRecipeTargetRepository", "description": "The destination repository for the container image. Detailed below.\n", @@ -267555,8 +269093,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetRepository": { "$ref": "#/types/aws:imagebuilder/ContainerRecipeTargetRepository:ContainerRecipeTargetRepository", @@ -267619,8 +269156,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -267654,6 +269190,13 @@ "type": "string" }, "description": "Key-value map of resource tags for the distribution configuration. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -267702,8 +269245,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -267783,8 +269325,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "version": { "type": "string", @@ -267859,6 +269400,13 @@ }, "description": "Key-value map of resource tags for the Image Builder Image. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "workflows": { "type": "array", "items": { @@ -267951,8 +269499,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "version": { "type": "string", @@ -268053,8 +269600,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -268124,6 +269670,13 @@ "type": "string" }, "description": "Key-value map of resource tags for the image pipeline. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -268215,8 +269768,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -268283,8 +269835,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "userDataBase64": { "type": "string", @@ -268356,6 +269907,13 @@ }, "description": "Key-value map of resource tags for the image recipe. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "userDataBase64": { "type": "string", "description": "Base64 encoded user data. Use this to provide commands or a command script to run when you launch your build instance.\n", @@ -268444,8 +270002,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "userDataBase64": { "type": "string", @@ -268546,8 +270103,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "terminateInstanceOnFailure": { "type": "boolean", @@ -268624,6 +270180,13 @@ }, "description": "Key-value map of resource tags to assign to the configuration. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "terminateInstanceOnFailure": { "type": "boolean", "description": "Enable if the instance should be terminated when the pipeline fails. Defaults to `false`.\n" @@ -268713,8 +270276,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "terminateInstanceOnFailure": { "type": "boolean", @@ -268770,8 +270332,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "type": { "type": "string", @@ -268829,6 +270390,12 @@ }, "description": "Key-value map of resource tags for the workflow. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, "type": { "type": "string", "description": "Type of the workflow. Valid values: `BUILD`, `TEST`, `DISTRIBUTION`.\n", @@ -268900,8 +270467,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "type": { "type": "string", @@ -269014,8 +270580,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetArn": { "type": "string", @@ -269063,6 +270628,13 @@ }, "description": "Key-value map of tags for the Inspector assessment template. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "targetArn": { "type": "string", "description": "The assessment target ARN to attach the template to.\n", @@ -269118,8 +270690,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetArn": { "type": "string", @@ -269425,8 +270996,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "tokenKeyName": { "type": "string", @@ -269475,6 +271045,13 @@ }, "description": "Map of tags to assign to this resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "tokenKeyName": { "type": "string", "description": "The name of the token key used to extract the token from the HTTP headers. This value is required if signing is enabled in your authorizer.\n" @@ -269530,8 +271107,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "tokenKeyName": { "type": "string", @@ -269581,8 +271157,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "version": { "type": "integer", @@ -269612,6 +271187,12 @@ "type": "string" }, "description": "Key-value mapping of resource tags\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } } }, "stateInputs": { @@ -269647,8 +271228,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "version": { "type": "integer", @@ -269706,8 +271286,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "validities": { "type": "array", @@ -269763,6 +271342,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "verificationCertificatePem": { "type": "string", "description": "PEM encoded verification certificate containing the common name of a registration code. Review\n[CreateVerificationCSR](https://docs.aws.amazon.com/iot/latest/developerguide/register-CA-cert.html). Reuired if `certificate_mode` is `DEFAULT`.\n", @@ -269825,8 +271411,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "validities": { "type": "array", @@ -270015,8 +271600,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "tlsConfig": { "$ref": "#/types/aws:iot/DomainConfigurationTlsConfig:DomainConfigurationTlsConfig", @@ -270073,6 +271657,13 @@ }, "description": "Map of tags to assign to this resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "tlsConfig": { "$ref": "#/types/aws:iot/DomainConfigurationTlsConfig:DomainConfigurationTlsConfig", "description": "An object that specifies the TLS configuration for a domain. See the `tls_config` Block below for details.\n" @@ -270137,8 +271728,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "tlsConfig": { "$ref": "#/types/aws:iot/DomainConfigurationTlsConfig:DomainConfigurationTlsConfig", @@ -270342,8 +271932,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -270374,6 +271963,13 @@ "type": "string" }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -270416,8 +272012,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -270536,8 +272131,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "templateBody": { "type": "string", @@ -270586,6 +272180,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "templateBody": { "type": "string", "description": "The JSON formatted contents of the fleet provisioning template.\n" @@ -270644,8 +272245,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "templateBody": { "type": "string", @@ -270691,8 +272291,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -270721,6 +272320,13 @@ "type": "string" }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -270759,8 +272365,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -270892,8 +272497,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "version": { "type": "integer", @@ -270928,6 +272532,12 @@ "type": "string" }, "description": "Key-value mapping of resource tags\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } } }, "stateInputs": { @@ -270968,8 +272578,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "version": { "type": "integer", @@ -271125,8 +272734,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -271154,6 +272762,13 @@ "type": "string" }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -271188,8 +272803,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -271346,8 +272960,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timestreams": { "type": "array", @@ -271505,6 +273118,13 @@ }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "timestreams": { "type": "array", "items": { @@ -271669,8 +273289,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timestreams": { "type": "array", @@ -271779,8 +273398,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -271822,6 +273440,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "type": { "type": "string", "description": "Channel type, which determines the allowable resolution and bitrate. Valid values: `STANDARD`, `BASIC`.\n" @@ -271870,8 +273495,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -271912,8 +273536,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -271941,6 +273564,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n", "willReplaceOnChanges": true + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -271980,9 +273610,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead.", - "willReplaceOnChanges": true + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -272023,8 +273651,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "thumbnailConfiguration": { "$ref": "#/types/aws:ivs/RecordingConfigurationThumbnailConfiguration:RecordingConfigurationThumbnailConfiguration", @@ -272064,6 +273691,13 @@ "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n", "willReplaceOnChanges": true }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "thumbnailConfiguration": { "$ref": "#/types/aws:ivs/RecordingConfigurationThumbnailConfiguration:RecordingConfigurationThumbnailConfiguration", "description": "Object containing information to enable/disable the recording of thumbnails for a live session and modify the interval at which thumbnails are generated for the live session.\n", @@ -272112,9 +273746,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead.", - "willReplaceOnChanges": true + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "thumbnailConfiguration": { "$ref": "#/types/aws:ivs/RecordingConfigurationThumbnailConfiguration:RecordingConfigurationThumbnailConfiguration", @@ -272156,8 +273788,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -272181,6 +273812,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -272214,8 +273852,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -272263,8 +273900,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -272304,6 +273940,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -272348,8 +273991,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -272422,8 +274064,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -272488,6 +274129,13 @@ }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "type": { "type": "string", "description": "The type of data source repository. For an updated list of values, refer to [Valid Values for Type](https://docs.aws.amazon.com/kendra/latest/dg/API_CreateDataSource.html#Kendra-CreateDataSource-request-Type).\n\nThe following arguments are optional:\n", @@ -272566,8 +274214,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -272768,8 +274415,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "updatedAt": { "type": "string", @@ -272828,6 +274474,13 @@ "additionalProperties": { "type": "string" } + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -272901,8 +274554,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "updatedAt": { "type": "string", @@ -272981,8 +274633,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "updatedAt": { "type": "string", @@ -273055,6 +274706,13 @@ }, "description": "Tags to apply to the Index. If configured with a provider\n`default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "userContextPolicy": { "type": "string", "description": "The user context policy. Valid values are `ATTRIBUTE_FILTER` or `USER_TOKEN`. For more information, refer to [UserContextPolicy](https://docs.aws.amazon.com/kendra/latest/APIReference/API_CreateIndex.html#kendra-CreateIndex-request-UserContextPolicy). Defaults to `ATTRIBUTE_FILTER`.\n" @@ -273142,8 +274800,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "updatedAt": { "type": "string", @@ -273209,8 +274866,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider's default_tags configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider's default_tags configuration block.\n" } }, "required": [ @@ -273249,6 +274905,13 @@ "additionalProperties": { "type": "string" } + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider's default_tags configuration block.\n" } }, "requiredInputs": [ @@ -273301,8 +274964,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider's default_tags configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider's default_tags configuration block.\n" } }, "type": "object" @@ -273349,8 +275011,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "thesaurusId": { "type": "string" @@ -273392,6 +275053,13 @@ "additionalProperties": { "type": "string" } + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -273441,8 +275109,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "thesaurusId": { "type": "string" @@ -273474,8 +275141,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -273495,6 +275161,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -273521,8 +275194,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -273583,8 +275255,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "ttl": { "$ref": "#/types/aws:keyspaces/TableTtl:TableTtl", @@ -273649,6 +275320,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "ttl": { "$ref": "#/types/aws:keyspaces/TableTtl:TableTtl", "description": "Enables Time to Live custom settings for the table. More information can be found in the [Developer Guide](https://docs.aws.amazon.com/keyspaces/latest/devguide/TTL.html).\n" @@ -273717,8 +275395,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "ttl": { "$ref": "#/types/aws:keyspaces/TableTtl:TableTtl", @@ -273795,8 +275472,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "version": { "type": "integer", @@ -273856,6 +275532,13 @@ "type": "string" }, "description": "Key-value map of tags for the Kinesis Analytics Application. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -273927,8 +275610,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "version": { "type": "integer", @@ -274012,8 +275694,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "versionId": { "type": "string" @@ -274098,6 +275779,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "versionId": { "type": "string" } @@ -274183,8 +275871,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "versionId": { "type": "string" @@ -274292,8 +275979,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -274349,6 +276035,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -274406,8 +276099,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -274522,8 +276214,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "version": { "type": "string", @@ -274568,6 +276259,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -274616,8 +276314,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "version": { "type": "string", @@ -274694,8 +276391,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "versionId": { "type": "integer", @@ -274762,6 +276458,13 @@ "type": "string" }, "description": "A map of tags to assign to the application. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -274839,8 +276542,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "versionId": { "type": "integer", @@ -275217,8 +276919,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "validTo": { "type": "string", @@ -275274,6 +276975,13 @@ }, "description": "A key-value map of tags to assign to the key. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "validTo": { "type": "string", "description": "Time at which the imported key material expires. When the key material expires, AWS KMS deletes the key material and the CMK becomes unusable. If not specified, key material does not expire. Valid values: [RFC3339 time string](https://tools.ietf.org/html/rfc3339#section-5.8) (`YYYY-MM-DDTHH:MM:SSZ`)\n" @@ -275341,8 +277049,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "validTo": { "type": "string", @@ -275602,8 +277309,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "xksKeyId": { "type": "string", @@ -275675,6 +277381,13 @@ }, "description": "A map of tags to assign to the object. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "xksKeyId": { "type": "string", "description": "Identifies the external key that serves as key material for the KMS key in an external key store.\n", @@ -275752,8 +277465,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "xksKeyId": { "type": "string", @@ -275885,8 +277597,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "validTo": { "type": "string", @@ -275943,6 +277654,13 @@ }, "description": "A map of tags to assign to the replica key. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "validTo": { "type": "string", "description": "Time at which the imported key material expires. When the key material expires, AWS KMS deletes the key material and the key becomes unusable. If not specified, key material does not expire. Valid values: [RFC3339 time string](https://tools.ietf.org/html/rfc3339#section-5.8) (`YYYY-MM-DDTHH:MM:SSZ`)\n" @@ -276017,8 +277735,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "validTo": { "type": "string", @@ -276087,8 +277804,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -276133,6 +277849,13 @@ "type": "string" }, "description": "A map of tags to assign to the replica key. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -276198,8 +277921,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -277776,8 +279498,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeout": { "type": "integer", @@ -277960,6 +279681,13 @@ }, "description": "Map of tags to assign to the object. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "timeout": { "type": "integer", "description": "Amount of time your Lambda Function has to run in seconds. Defaults to `3`. See [Limits](https://docs.aws.amazon.com/lambda/latest/dg/limits.html).\n" @@ -278163,8 +279891,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeout": { "type": "integer", @@ -279311,8 +281038,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -279367,6 +281093,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n\n\u003e **NOTE::** Please note that listeners that are attached to Application Load Balancers must use either `HTTP` or `HTTPS` protocols while listeners that are attached to Network Load Balancers must use the `TCP` protocol.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -279428,8 +281161,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -279535,8 +281267,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -279577,6 +281308,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -279626,8 +281364,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -279770,8 +281507,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string" @@ -279919,6 +281655,13 @@ }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "xffHeaderProcessingMode": { "type": "string", "description": "Determines how the load balancer modifies the `X-Forwarded-For` header in the HTTP request before sending the request to the target. The possible values are `append`, `preserve`, and `remove`. Only valid for Load Balancers of type `application`. The default is `append`.\n" @@ -280061,8 +281804,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string" @@ -280182,8 +281924,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetFailovers": { "type": "array", @@ -280309,6 +282050,13 @@ }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "targetFailovers": { "type": "array", "items": { @@ -280438,8 +282186,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetFailovers": { "type": "array", @@ -280599,8 +282346,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -280641,6 +282387,13 @@ "type": "string" }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -280692,8 +282445,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -281579,8 +283331,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "testBotAliasTags": { "type": "object", @@ -281709,8 +283460,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "testBotAliasTags": { "type": "object", @@ -282663,8 +284413,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -282710,6 +284459,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -282767,8 +284523,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -283062,8 +284817,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "url": { "type": "string" @@ -283100,6 +284854,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. To create a key-only tag, use an empty string as the value. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -283153,8 +284914,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "url": { "type": "string" @@ -283326,8 +285086,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -283364,6 +285123,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. To create a key-only tag, use an empty string as the value. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -283414,8 +285180,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -283491,8 +285256,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider\n`default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider\n`default_tags` configuration block.\n" }, "url": { "type": "string", @@ -283547,6 +285311,13 @@ "type": "string" }, "description": "Map of container service tags. To create a key-only tag, use an empty string as the value. To tag at launch, specify the tags in the Launch Template. If\nconfigured with a provider\n`default_tags` configuration block\npresent, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider\n`default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -283624,8 +285395,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider\n`default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider\n`default_tags` configuration block.\n" }, "url": { "type": "string", @@ -283854,8 +285624,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -283953,6 +285722,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. To create a key-only tag, use an empty string as the value.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -284089,8 +285865,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -284135,8 +285910,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -284170,6 +285944,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. To create a key-only tag, use an empty string as the value. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -284218,8 +285999,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -284386,8 +286166,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -284452,6 +286231,13 @@ "type": "string" }, "description": "Map of tags for the Lightsail Distribution. To create a key-only tag, use an empty string as the value. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -284555,8 +286341,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -284776,8 +286561,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "userData": { "type": "string", @@ -284845,6 +286629,13 @@ }, "description": "A map of tags to assign to the resource. To create a key-only tag, use an empty string as the value. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "userData": { "type": "string", "description": "Single lined launch script as a string to configure server with additional user data\n", @@ -284939,8 +286730,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "userData": { "type": "string", @@ -285062,8 +286852,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "required": [ @@ -285103,6 +286892,12 @@ "type": "string" }, "description": "A map of tags to assign to the collection. To create a key-only tag, use an empty string as the value. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n\n\u003e **NOTE:** a PGP key is not required, however it is strongly encouraged. Without a PGP key, the private key material will be stored in state unencrypted.`pgp_key` is ignored if `public_key` is supplied.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } } }, "stateInputs": { @@ -285158,8 +286953,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "type": "object" @@ -285222,8 +287016,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -285261,6 +287054,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. To create a key-only tag, use an empty string as the value. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -285325,8 +287125,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -285812,8 +287611,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "updateTime": { "type": "string", @@ -285848,6 +287646,12 @@ "type": "string" }, "description": "Key-value tags for the geofence collection. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } } }, "requiredInputs": [ @@ -285889,8 +287693,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "updateTime": { "type": "string", @@ -285935,8 +287738,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "updateTime": { "type": "string", @@ -285972,6 +287774,13 @@ "type": "string" }, "description": "Key-value tags for the map. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -286015,8 +287824,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "updateTime": { "type": "string", @@ -286065,8 +287873,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "updateTime": { "type": "string", @@ -286107,6 +287914,13 @@ "type": "string" }, "description": "Key-value tags for the place index. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -286154,8 +287968,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "updateTime": { "type": "string", @@ -286200,8 +288013,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "updateTime": { "type": "string", @@ -286237,6 +288049,13 @@ "type": "string" }, "description": "Key-value tags for the route calculator. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -286280,8 +288099,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "updateTime": { "type": "string", @@ -286322,8 +288140,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "trackerArn": { "type": "string", @@ -286366,6 +288183,13 @@ }, "description": "Key-value tags for the tracker. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "trackerName": { "type": "string", "description": "The name of the tracker resource.\n\nThe following arguments are optional:\n" @@ -286406,8 +288230,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "trackerArn": { "type": "string", @@ -286525,8 +288348,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:m2/ApplicationTimeouts:ApplicationTimeouts" @@ -286630,8 +288452,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:m2/ApplicationTimeouts:ApplicationTimeouts" @@ -286822,8 +288643,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "timeouts": { "$ref": "#/types/aws:m2/EnvironmentTimeouts:EnvironmentTimeouts" @@ -287001,8 +288821,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "timeouts": { "$ref": "#/types/aws:m2/EnvironmentTimeouts:EnvironmentTimeouts" @@ -287067,8 +288886,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "required": [ @@ -287128,6 +288946,12 @@ }, "description": "A map of key-value pairs that specifies the tags to associate with the custom data identifier.\n", "willReplaceOnChanges": true + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } } }, "stateInputs": { @@ -287194,9 +289018,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead.", - "willReplaceOnChanges": true + } } }, "type": "object" @@ -287244,8 +289066,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "required": [ @@ -287289,6 +289110,12 @@ }, "description": "A map of key-value pairs that specifies the tags to associate with the filter.\n", "willReplaceOnChanges": true + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } } }, "requiredInputs": [ @@ -287338,9 +289165,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead.", - "willReplaceOnChanges": true + } } }, "type": "object" @@ -287506,8 +289331,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "userPausedDetails": { "type": "array", @@ -287593,6 +289417,12 @@ }, "description": "A map of key-value pairs that specifies the tags to associate with the job. A job can have a maximum of 50 tags. Each tag consists of a tag key and an associated tag value. The maximum length of a tag key is 128 characters. The maximum length of a tag value is 256 characters.\n", "willReplaceOnChanges": true + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } } }, "requiredInputs": [ @@ -287676,9 +289506,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead.", - "willReplaceOnChanges": true + } }, "userPausedDetails": { "type": "array", @@ -287790,8 +289618,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "updatedAt": { "type": "string", @@ -287845,6 +289672,12 @@ }, "description": "A map of key-value pairs that specifies the tags to associate with the account in Amazon Macie.\n", "willReplaceOnChanges": true + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } } }, "requiredInputs": [ @@ -287911,9 +289744,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead.", - "willReplaceOnChanges": true + } }, "updatedAt": { "type": "string", @@ -287995,8 +289826,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -288034,6 +289864,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -288077,8 +289914,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -288156,8 +289992,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "vpc": { "$ref": "#/types/aws:medialive/ChannelVpc:ChannelVpc", @@ -288236,6 +290071,12 @@ }, "description": "A map of tags to assign to the channel. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, "vpc": { "$ref": "#/types/aws:medialive/ChannelVpc:ChannelVpc", "description": "Settings for the VPC outputs. See VPC for more details.\n", @@ -288322,8 +290163,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "vpc": { "$ref": "#/types/aws:medialive/ChannelVpc:ChannelVpc", @@ -288417,8 +290257,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "type": { "type": "string", @@ -288494,6 +290333,12 @@ }, "description": "A map of tags to assign to the Input. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, "type": { "type": "string", "description": "The different types of inputs that AWS Elemental MediaLive supports.\n\nThe following arguments are optional:\n", @@ -288590,8 +290435,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "type": { "type": "string", @@ -288631,8 +290475,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "whitelistRules": { "type": "array", @@ -288656,6 +290499,12 @@ }, "description": "A map of tags to assign to the InputSecurityGroup. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, "whitelistRules": { "type": "array", "items": { @@ -288692,8 +290541,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "whitelistRules": { "type": "array", @@ -288743,8 +290591,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "required": [ @@ -288780,6 +290627,12 @@ "type": "string" }, "description": "A map of tags to assign to the Multiplex. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } } }, "requiredInputs": [ @@ -288823,8 +290676,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "type": "object" @@ -288922,8 +290774,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -288950,6 +290801,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -288991,8 +290849,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -289025,8 +290882,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -289047,6 +290903,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -289077,8 +290940,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -289162,8 +291024,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "userNames": { "type": "array", @@ -289198,6 +291059,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "userNames": { "type": "array", "items": { @@ -289239,8 +291107,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "userNames": { "type": "array", @@ -289383,8 +291250,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "tlsEnabled": { "type": "boolean", @@ -289520,6 +291386,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "tlsEnabled": { "type": "boolean", "description": "A flag to enable in-transit encryption on the cluster. When set to `false`, the `acl_name` must be `open-access`. Defaults to `true`.\n", @@ -289669,8 +291542,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "tlsEnabled": { "type": "boolean", @@ -289723,8 +291595,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -289768,6 +291639,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -289819,8 +291697,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -289872,8 +291749,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -289912,6 +291788,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -289967,8 +291850,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -290012,8 +291894,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -290056,6 +291937,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -290101,8 +291989,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -290143,8 +292030,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "userName": { "type": "string", @@ -290175,6 +292061,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "userName": { "type": "string", "description": "Name of the MemoryDB user. Up to 40 characters.\n\nThe following arguments are optional:\n", @@ -290217,8 +292110,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "userName": { "type": "string", @@ -290341,8 +292233,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "users": { "type": "array", @@ -290467,6 +292358,13 @@ }, "description": "Map of tags to assign to the broker. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "users": { "type": "array", "items": { @@ -290601,8 +292499,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "users": { "type": "array", @@ -290662,8 +292559,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -290710,6 +292606,13 @@ "type": "string" }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -290767,8 +292670,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -290885,8 +292787,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "zookeeperConnectString": { "type": "string", @@ -290974,6 +292875,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -291095,8 +293003,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "zookeeperConnectString": { "type": "string", @@ -291304,8 +293211,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "required": [ @@ -291348,6 +293254,12 @@ "additionalProperties": { "type": "string" } + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } } }, "requiredInputs": [ @@ -291401,8 +293313,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "type": "object" @@ -291495,8 +293406,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcConfigs": { "type": "array", @@ -291532,6 +293442,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcConfigs": { "type": "array", "items": { @@ -291578,8 +293495,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcConfigs": { "type": "array", @@ -291630,8 +293546,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetClusterArn": { "type": "string", @@ -291680,6 +293595,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "targetClusterArn": { "type": "string", "description": "The Amazon Resource Name (ARN) of the cluster.\n", @@ -291738,8 +293660,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetClusterArn": { "type": "string", @@ -292306,8 +294227,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "webserverAccessMode": { "type": "string", @@ -292456,6 +294376,13 @@ }, "description": "A map of resource tags to associate with the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "webserverAccessMode": { "type": "string", "description": "Specifies whether the webserver should be accessible over the internet or via your specified VPC. Possible options: `PRIVATE_ONLY` (default) and `PUBLIC_ONLY`.\n" @@ -292604,8 +294531,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "webserverAccessMode": { "type": "string", @@ -292790,8 +294716,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcSecurityGroupIds": { "type": "array", @@ -292960,6 +294885,13 @@ }, "description": "A map of tags to assign to the Neptune cluster. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcSecurityGroupIds": { "type": "array", "items": { @@ -293140,8 +295072,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcSecurityGroupIds": { "type": "array", @@ -293203,8 +295134,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -293251,6 +295181,13 @@ "type": "string" }, "description": "A map of tags to assign to the Neptune cluster. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -293310,8 +295247,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -293428,8 +295364,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "writer": { "type": "boolean", @@ -293540,6 +295475,13 @@ "type": "string" }, "description": "A map of tags to assign to the instance. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -293665,8 +295607,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "writer": { "type": "boolean", @@ -293718,8 +295659,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -293763,6 +295703,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -293814,8 +295761,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -294046,8 +295992,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -294101,6 +296046,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -294165,8 +296117,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -294357,8 +296308,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -294402,6 +296352,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -294453,8 +296410,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -294499,8 +296455,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -294540,6 +296495,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -294586,8 +296548,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -294654,8 +296615,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "updateToken": { "type": "string", @@ -294720,6 +296680,13 @@ }, "description": "Map of resource tags to associate with the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcId": { "type": "string", "description": "The unique identifier of the VPC where AWS Network Firewall should create the firewall.\n", @@ -294793,8 +296760,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "updateToken": { "type": "string", @@ -294849,8 +296815,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "updateToken": { "type": "string", @@ -294893,6 +296858,13 @@ "type": "string" }, "description": "Map of resource tags to associate with the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -294939,8 +296911,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "updateToken": { "type": "string", @@ -295107,8 +297078,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -295167,6 +297137,13 @@ }, "description": "A map of key:value pairs to associate with the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "type": { "type": "string", "description": "Whether the rule group is stateless (containing stateless rules) or stateful (containing stateful rules). Valid values include: `STATEFUL` or `STATELESS`.\n" @@ -295226,8 +297203,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -295291,8 +297267,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "timeouts": { "$ref": "#/types/aws:networkfirewall/TlsInspectionConfigurationTimeouts:TlsInspectionConfigurationTimeouts" @@ -295411,8 +297386,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "timeouts": { "$ref": "#/types/aws:networkfirewall/TlsInspectionConfigurationTimeouts:TlsInspectionConfigurationTimeouts" @@ -295621,8 +297595,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "transportAttachmentId": { "type": "string", @@ -295667,6 +297640,13 @@ }, "description": "Key-value tags for the attachment. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "transportAttachmentId": { "type": "string", "description": "The ID of the attachment between the two connections.\n", @@ -295743,8 +297723,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "transportAttachmentId": { "type": "string", @@ -295826,8 +297805,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -295881,6 +297859,13 @@ "type": "string" }, "description": "Key-value tags for the attachment. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -295963,8 +297948,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -296013,8 +297997,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -296058,6 +298041,13 @@ "type": "string" }, "description": "Key-value tags for the connection. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -296111,8 +298101,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -296187,8 +298176,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -296236,6 +298224,13 @@ "type": "string" }, "description": "Key-value tags for the Core Network. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -296311,8 +298306,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -296500,8 +298494,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -296554,6 +298547,13 @@ }, "description": "Key-value tags for the device. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "type": { "type": "string", "description": "The type of device.\n" @@ -296614,8 +298614,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -296652,8 +298651,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -296671,6 +298669,13 @@ "type": "string" }, "description": "Key-value tags for the Global Network. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -296696,8 +298701,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -296742,8 +298746,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -296787,6 +298790,13 @@ }, "description": "Key-value tags for the link. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "type": { "type": "string", "description": "The type of the link.\n" @@ -296838,8 +298848,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -296945,8 +298954,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -296974,6 +298982,13 @@ "type": "string" }, "description": "Key-value tags for the Site. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -297011,8 +299026,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -297073,8 +299087,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpnConnectionArn": { "type": "string", @@ -297108,6 +299121,13 @@ }, "description": "Key-value tags for the attachment. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpnConnectionArn": { "type": "string", "description": "The ARN of the site-to-site VPN connection.\n\nThe following arguments are optional:\n", @@ -297174,8 +299194,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpnConnectionArn": { "type": "string", @@ -297308,8 +299327,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "transitGatewayArn": { "type": "string", @@ -297345,6 +299363,13 @@ }, "description": "Key-value tags for the peering. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "transitGatewayArn": { "type": "string", "description": "The ARN of the transit gateway for the peering request.\n", @@ -297399,8 +299424,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "transitGatewayArn": { "type": "string", @@ -297523,8 +299547,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "transitGatewayRouteTableArn": { "type": "string", @@ -297559,6 +299582,13 @@ }, "description": "Key-value tags for the attachment. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "transitGatewayRouteTableArn": { "type": "string", "description": "The ARN of the transit gateway route table for the attachment.\n", @@ -297629,8 +299659,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "transitGatewayRouteTableArn": { "type": "string", @@ -297707,8 +299736,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcArn": { "type": "string", @@ -297754,6 +299782,13 @@ }, "description": "Key-value tags for the attachment. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcArn": { "type": "string", "description": "The ARN of the VPC.\n\nThe following arguments are optional:\n", @@ -297832,8 +299867,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcArn": { "type": "string", @@ -297871,8 +299905,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -297927,8 +299960,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -297983,8 +300015,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string" @@ -298090,8 +300121,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string" @@ -298145,8 +300175,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "required": [ @@ -298183,6 +300212,12 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } } }, "requiredInputs": [ @@ -298237,8 +300272,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "type": "object" @@ -298270,8 +300304,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "required": [ @@ -298292,6 +300325,12 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } } }, "stateInputs": { @@ -298321,8 +300360,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "type": "object" @@ -298503,8 +300541,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcOptions": { "$ref": "#/types/aws:opensearch/DomainVpcOptions:DomainVpcOptions", @@ -298616,6 +300653,13 @@ }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcOptions": { "$ref": "#/types/aws:opensearch/DomainVpcOptions:DomainVpcOptions", "description": "Configuration block for VPC related options. Adding or removing this configuration forces a new resource ([documentation](https://docs.aws.amazon.com/opensearch-service/latest/developerguide/vpc.html)). Detailed below.\n", @@ -298733,8 +300777,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcOptions": { "$ref": "#/types/aws:opensearch/DomainVpcOptions:DomainVpcOptions", @@ -299262,8 +301305,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "timeouts": { "$ref": "#/types/aws:opensearch/ServerlessCollectionTimeouts:ServerlessCollectionTimeouts" @@ -299353,8 +301395,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "timeouts": { "$ref": "#/types/aws:opensearch/ServerlessCollectionTimeouts:ServerlessCollectionTimeouts" @@ -299809,8 +301850,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "timeouts": { "$ref": "#/types/aws:opensearchingest/PipelineTimeouts:PipelineTimeouts" @@ -299932,8 +301972,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "timeouts": { "$ref": "#/types/aws:opensearchingest/PipelineTimeouts:PipelineTimeouts" @@ -300338,8 +302377,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "useEbsOptimizedInstances": { "type": "boolean", @@ -300471,6 +302509,13 @@ }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n\nThe following extra optional arguments, all lists of Chef recipe names, allow\ncustom Chef recipes to be applied to layer instances at the five different\nlifecycle events, if custom cookbooks are enabled on the layer's stack:\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "useEbsOptimizedInstances": { "type": "boolean", "description": "Whether to use EBS-optimized instances.\n" @@ -300607,8 +302652,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "useEbsOptimizedInstances": { "type": "boolean", @@ -300741,8 +302785,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "useEbsOptimizedInstances": { "type": "boolean", @@ -300873,6 +302916,12 @@ }, "description": "A mapping of tags to assign to the resource.\n\nThe following extra optional arguments, all lists of Chef recipe names, allow\ncustom Chef recipes to be applied to layer instances at the five different\nlifecycle events, if custom cookbooks are enabled on the layer's stack:\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, "useEbsOptimizedInstances": { "type": "boolean", "description": "Whether to use EBS-optimized instances.\n" @@ -301007,8 +303056,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "useEbsOptimizedInstances": { "type": "boolean", @@ -301142,8 +303190,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "url": { "type": "string", @@ -301281,6 +303328,13 @@ }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n\nThe following extra optional arguments, all lists of Chef recipe names, allow\ncustom Chef recipes to be applied to layer instances at the five different\nlifecycle events, if custom cookbooks are enabled on the layer's stack:\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "url": { "type": "string", "description": "The URL path to use for Ganglia. Defaults to \"/ganglia\".\n" @@ -301423,8 +303477,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "url": { "type": "string", @@ -301586,8 +303639,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "useEbsOptimizedInstances": { "type": "boolean", @@ -301737,6 +303789,13 @@ }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n\nThe following extra optional arguments, all lists of Chef recipe names, allow\ncustom Chef recipes to be applied to layer instances at the five different\nlifecycle events, if custom cookbooks are enabled on the layer's stack:\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "useEbsOptimizedInstances": { "type": "boolean", "description": "Whether to use EBS-optimized instances.\n" @@ -301891,8 +303950,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "useEbsOptimizedInstances": { "type": "boolean", @@ -302648,8 +304706,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "useEbsOptimizedInstances": { "type": "boolean", @@ -302794,6 +304851,13 @@ }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n\nThe following extra optional arguments, all lists of Chef recipe names, allow\ncustom Chef recipes to be applied to layer instances at the five different\nlifecycle events, if custom cookbooks are enabled on the layer's stack:\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "useEbsOptimizedInstances": { "type": "boolean", "description": "Whether to use EBS-optimized instances.\n" @@ -302943,8 +305007,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "useEbsOptimizedInstances": { "type": "boolean", @@ -303078,8 +305141,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "useEbsOptimizedInstances": { "type": "boolean", @@ -303208,6 +305270,13 @@ }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n\nThe following extra optional arguments, all lists of Chef recipe names, allow\ncustom Chef recipes to be applied to layer instances at the five different\nlifecycle events, if custom cookbooks are enabled on the layer's stack:\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "useEbsOptimizedInstances": { "type": "boolean", "description": "Whether to use EBS-optimized instances.\n" @@ -303341,8 +305410,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "useEbsOptimizedInstances": { "type": "boolean", @@ -303480,8 +305548,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "useEbsOptimizedInstances": { "type": "boolean", @@ -303614,6 +305681,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n\nThe following extra optional arguments, all lists of Chef recipe names, allow\ncustom Chef recipes to be applied to layer instances at the five different\nlifecycle events, if custom cookbooks are enabled on the layer's stack:\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "useEbsOptimizedInstances": { "type": "boolean", "description": "Whether to use EBS-optimized instances.\n" @@ -303751,8 +305825,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "useEbsOptimizedInstances": { "type": "boolean", @@ -303886,8 +305959,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "useEbsOptimizedInstances": { "type": "boolean", @@ -304016,6 +306088,13 @@ }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n\nThe following extra optional arguments, all lists of Chef recipe names, allow\ncustom Chef recipes to be applied to layer instances at the five different\nlifecycle events, if custom cookbooks are enabled on the layer's stack:\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "useEbsOptimizedInstances": { "type": "boolean", "description": "Whether to use EBS-optimized instances.\n" @@ -304149,8 +306228,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "useEbsOptimizedInstances": { "type": "boolean", @@ -304368,8 +306446,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "useEbsOptimizedInstances": { "type": "boolean", @@ -304494,6 +306571,13 @@ }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n\nThe following extra optional arguments, all lists of Chef recipe names, allow\ncustom Chef recipes to be applied to layer instances at the five different\nlifecycle events, if custom cookbooks are enabled on the layer's stack:\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "useEbsOptimizedInstances": { "type": "boolean", "description": "Whether to use EBS-optimized instances.\n" @@ -304623,8 +306707,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "useEbsOptimizedInstances": { "type": "boolean", @@ -304778,8 +306861,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "useEbsOptimizedInstances": { "type": "boolean", @@ -304928,6 +307010,13 @@ }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n\nThe following extra optional arguments, all lists of Chef recipe names, allow\ncustom Chef recipes to be applied to layer instances at the five different\nlifecycle events, if custom cookbooks are enabled on the layer's stack:\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "useEbsOptimizedInstances": { "type": "boolean", "description": "Whether to use EBS-optimized instances.\n" @@ -305081,8 +307170,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "useEbsOptimizedInstances": { "type": "boolean", @@ -305268,8 +307356,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "useCustomCookbooks": { "type": "boolean", @@ -305383,6 +307470,13 @@ }, "description": "A map of tags to assign to the resource.\nIf configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "useCustomCookbooks": { "type": "boolean", "description": "Boolean value controlling whether the custom cookbook settings are enabled.\n" @@ -305500,8 +307594,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "useCustomCookbooks": { "type": "boolean", @@ -305639,8 +307732,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "useEbsOptimizedInstances": { "type": "boolean", @@ -305764,6 +307856,13 @@ }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n\nThe following extra optional arguments, all lists of Chef recipe names, allow\ncustom Chef recipes to be applied to layer instances at the five different\nlifecycle events, if custom cookbooks are enabled on the layer's stack:\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "useEbsOptimizedInstances": { "type": "boolean", "description": "Whether to use EBS-optimized instances.\n" @@ -305892,8 +307991,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "useEbsOptimizedInstances": { "type": "boolean", @@ -306035,8 +308133,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -306089,6 +308186,13 @@ "type": "string" }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -306159,8 +308263,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -306471,8 +308574,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -306498,6 +308600,13 @@ "type": "string" }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -306538,8 +308647,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -306580,8 +308688,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -306618,6 +308725,13 @@ }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "type": { "type": "string", "description": "The type of policy to create. Valid values are `AISERVICES_OPT_OUT_POLICY`, `BACKUP_POLICY`, `SERVICE_CONTROL_POLICY` (SCP), and `TAG_POLICY`. Defaults to `SERVICE_CONTROL_POLICY`.\n", @@ -306662,8 +308776,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -306758,8 +308871,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -306778,6 +308890,13 @@ "type": "string" }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -306806,8 +308925,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -306868,8 +308986,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:paymentcryptography/KeyTimeouts:KeyTimeouts" @@ -306975,8 +309092,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:paymentcryptography/KeyTimeouts:KeyTimeouts" @@ -307738,8 +309854,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -307778,6 +309893,13 @@ "type": "string" }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -307825,8 +309947,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -308286,8 +310407,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "target": { "type": "string", @@ -308359,6 +310479,13 @@ }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "target": { "type": "string", "description": "Target resource of the pipe (typically an ARN).\n\nThe following arguments are optional:\n" @@ -308435,8 +310562,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "target": { "type": "string", @@ -308485,8 +310611,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -308520,6 +310645,13 @@ "type": "string" }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -308561,8 +310693,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -308611,8 +310742,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -308661,6 +310791,13 @@ "type": "string" }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -308719,8 +310856,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -309077,8 +311213,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "themeArn": { "type": "string", @@ -309138,6 +311273,13 @@ }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "themeArn": { "type": "string", "description": "The Amazon Resource Name (ARN) of the theme that is being used for this analysis. The theme ARN must exist in the same AWS account where you create the analysis.\n" @@ -309213,8 +311355,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "themeArn": { "type": "string", @@ -309293,8 +311434,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "themeArn": { "type": "string", @@ -309366,6 +311506,13 @@ }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "themeArn": { "type": "string", "description": "The Amazon Resource Name (ARN) of the theme that is being used for this dashboard. The theme ARN must exist in the same AWS account where you create the dashboard.\n" @@ -309450,8 +311597,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "themeArn": { "type": "string", @@ -309568,8 +311714,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -309666,6 +311811,13 @@ "type": "string" }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -309773,8 +311925,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -309830,8 +311981,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -309892,6 +312042,13 @@ }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "type": { "type": "string", "description": "The type of the data source. See the [AWS Documentation](https://docs.aws.amazon.com/quicksight/latest/APIReference/API_CreateDataSource.html#QS-CreateDataSource-request-Type) for the complete list of valid values.\n\nThe following arguments are optional:\n", @@ -309959,8 +312116,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -310036,8 +312192,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -310087,6 +312242,13 @@ "type": "string" }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -310156,8 +312318,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -310641,8 +312802,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:quicksight/NamespaceTimeouts:NamespaceTimeouts" @@ -310733,8 +312893,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:quicksight/NamespaceTimeouts:NamespaceTimeouts" @@ -310876,8 +313035,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "templateId": { "type": "string", @@ -310933,6 +313091,13 @@ }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "templateId": { "type": "string", "description": "Identifier for the template.\n", @@ -311002,8 +313167,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "templateId": { "type": "string", @@ -311157,8 +313321,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "themeId": { "type": "string", @@ -311217,6 +313380,13 @@ }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "themeId": { "type": "string", "description": "Identifier of the theme.\n", @@ -311286,8 +313456,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "themeId": { "type": "string", @@ -311505,8 +313674,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:quicksight/VpcConnectionTimeouts:VpcConnectionTimeouts" @@ -311638,8 +313806,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:quicksight/VpcConnectionTimeouts:VpcConnectionTimeouts" @@ -311784,8 +313951,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -311817,6 +313983,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource share. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -311854,8 +314027,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -312021,8 +314193,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "required": [ @@ -312066,6 +314237,12 @@ "additionalProperties": { "type": "string" } + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } } }, "requiredInputs": [ @@ -312124,8 +314301,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "type": "object" @@ -312393,8 +314569,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcSecurityGroupIds": { "type": "array", @@ -312694,6 +314869,13 @@ }, "description": "A map of tags to assign to the DB cluster. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcSecurityGroupIds": { "type": "array", "items": { @@ -312999,8 +315181,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcSecurityGroupIds": { "type": "array", @@ -313150,8 +315331,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -313197,6 +315377,13 @@ "type": "string" }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -313255,8 +315442,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -313402,8 +315588,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "writer": { "type": "boolean", @@ -313556,6 +315741,13 @@ "type": "string" }, "description": "Map of tags to assign to the instance. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -313719,8 +315911,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "writer": { "type": "boolean", @@ -313773,8 +315964,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -313820,6 +316010,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -313872,8 +316069,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -314016,8 +316212,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -314059,6 +316254,13 @@ "type": "string" }, "description": "A map of tags to assign to the DB cluster. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -314139,8 +316341,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -314233,8 +316434,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -314309,6 +316509,13 @@ "type": "string" }, "description": "A mapping of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -314406,8 +316613,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -314470,8 +316676,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -314525,6 +316730,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -314589,8 +316801,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -315293,8 +317504,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timezone": { "type": "string", @@ -315659,6 +317869,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "timezone": { "type": "string", "description": "Time zone of the DB instance. `timezone` is currently\nonly supported by Microsoft SQL Server. The `timezone` can only be set on\ncreation. See [MSSQL User\nGuide](http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.TimeZone)\nfor more information.\n", @@ -316036,8 +318253,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timezone": { "type": "string", @@ -316183,8 +318399,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -316236,6 +318451,13 @@ "type": "string" }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -316294,8 +318516,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -316344,8 +318565,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -316391,6 +318611,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -316443,8 +318670,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -316504,8 +318730,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcSecurityGroupIds": { "type": "array", @@ -316574,6 +318799,13 @@ }, "description": "A mapping of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcSecurityGroupIds": { "type": "array", "items": { @@ -316651,8 +318883,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcSecurityGroupIds": { "type": "array", @@ -316771,8 +319002,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "targetRole": { "type": "string", @@ -316826,6 +319056,12 @@ }, "description": "A mapping of tags to assign to the resource.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, "targetRole": { "type": "string", "description": "Indicates whether the DB proxy endpoint can be used for read/write or read-only operations. The default is `READ_WRITE`. Valid values are `READ_WRITE` and `READ_ONLY`.\n", @@ -316888,8 +319124,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "targetRole": { "type": "string", @@ -317128,8 +319363,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "usagePrice": { "type": "number", @@ -317175,6 +319409,13 @@ "type": "string" }, "description": "Map of tags to assign to the DB reservation. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -317261,8 +319502,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "usagePrice": { "type": "number", @@ -317429,8 +319669,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -317483,6 +319722,13 @@ "type": "string" }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -317583,8 +319829,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -317679,8 +319924,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetCustomAvailabilityZone": { "type": "string", @@ -317752,6 +319996,13 @@ }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "targetCustomAvailabilityZone": { "type": "string", "description": "The external custom Availability Zone.\n", @@ -317858,8 +320109,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetCustomAvailabilityZone": { "type": "string", @@ -317925,8 +320175,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -317972,6 +320221,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -318025,8 +320281,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -318292,8 +320547,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcSecurityGroupIds": { "type": "array", @@ -318516,6 +320770,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcSecurityGroupIds": { "type": "array", "items": { @@ -318743,8 +321004,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcSecurityGroupIds": { "type": "array", @@ -318864,8 +321124,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -318897,6 +321156,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -318944,8 +321210,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -319436,8 +321701,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -319490,6 +321754,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -319556,8 +321827,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -319590,8 +321860,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -319612,6 +321881,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -319645,8 +321921,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -319696,8 +321971,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -319748,6 +322022,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -319808,8 +322089,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -319942,8 +322222,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -319983,6 +322262,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n\nYou can read more about the parameters that Redshift supports in the [documentation](http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html)\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -320030,8 +322316,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -320415,8 +322700,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -320442,6 +322726,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -320476,8 +322767,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -320525,8 +322815,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -320569,6 +322858,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -320619,8 +322915,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -320710,8 +323005,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -320745,6 +323039,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -320786,8 +323087,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -320836,8 +323136,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -320883,6 +323182,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -320938,8 +323244,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -321392,8 +323697,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -321465,6 +323769,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -321546,8 +323857,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -321903,8 +324213,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "workgroupId": { "type": "string", @@ -321982,6 +324291,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "workgroupName": { "type": "string", "description": "The name of the workgroup.\n\nThe following arguments are optional:\n", @@ -322064,8 +324380,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "workgroupId": { "type": "string", @@ -322107,8 +324422,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:rekognition/CollectionTimeouts:CollectionTimeouts" @@ -322166,8 +324480,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:rekognition/CollectionTimeouts:CollectionTimeouts" @@ -322266,8 +324579,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:resourceexplorer/IndexTimeouts:IndexTimeouts" @@ -322320,8 +324632,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:resourceexplorer/IndexTimeouts:IndexTimeouts" @@ -322372,8 +324683,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -322448,8 +324758,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -322493,8 +324802,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -322529,6 +324837,13 @@ "type": "string" }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -322570,8 +324885,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -322688,8 +325002,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -322740,6 +325053,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -322798,8 +325118,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -322836,8 +325155,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -322866,6 +325184,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -322902,8 +325227,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -323176,8 +325500,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -323285,6 +325608,13 @@ }, "description": "A map of tags to assign to the health check. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "type": { "type": "string", "description": "The protocol to use when performing health checks. Valid values are `HTTP`, `HTTPS`, `HTTP_STR_MATCH`, `HTTPS_STR_MATCH`, `TCP`, `CALCULATED`, `CLOUDWATCH_METRIC` and `RECOVERY_CONTROL`.\n", @@ -323399,8 +325729,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -324151,8 +326480,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -324208,6 +326536,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -324273,8 +326608,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -324365,8 +326699,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -324393,6 +326726,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. f configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -324426,8 +326766,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -324626,8 +326965,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -324649,6 +326987,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -324683,8 +327028,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -324725,8 +327069,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -324767,6 +327110,13 @@ }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcId": { "type": "string", "description": "The unique identifier of the VPC that you want to associate with the rule group.\n", @@ -324814,8 +327164,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcId": { "type": "string", @@ -324861,8 +327210,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -324890,6 +327238,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -324932,8 +327287,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -325031,8 +327385,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetIps": { "type": "array", @@ -325077,6 +327430,13 @@ }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "targetIps": { "type": "array", "items": { @@ -325134,8 +327494,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetIps": { "type": "array", @@ -325491,8 +327850,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcs": { "type": "array", @@ -325542,6 +327900,13 @@ }, "description": "A mapping of tags to assign to the zone. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcs": { "type": "array", "items": { @@ -325599,8 +327964,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcs": { "type": "array", @@ -325840,8 +328204,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "techContact": { "$ref": "#/types/aws:route53domains/RegisteredDomainTechContact:RegisteredDomainTechContact", @@ -325930,6 +328293,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "techContact": { "$ref": "#/types/aws:route53domains/RegisteredDomainTechContact:RegisteredDomainTechContact", "description": "Details about the domain technical contact. See Contact Blocks for more details.\n" @@ -326035,8 +328405,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "techContact": { "$ref": "#/types/aws:route53domains/RegisteredDomainTechContact:RegisteredDomainTechContact", @@ -326484,8 +328853,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -326513,6 +328881,13 @@ "type": "string" }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -326556,8 +328931,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -326590,8 +328964,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -326616,6 +328989,13 @@ "type": "string" }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -326650,8 +329030,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -326687,8 +329066,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -326715,6 +329093,13 @@ "type": "string" }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -326751,8 +329136,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -326792,8 +329176,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -326827,6 +329210,13 @@ "type": "string" }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -326870,8 +329260,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -326924,8 +329313,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -326966,6 +329354,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -327019,8 +329414,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -327532,8 +329926,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "versioning": { "$ref": "#/types/aws:s3/BucketVersioning:BucketVersioning", @@ -327676,6 +330069,13 @@ }, "description": "A map of tags to assign to the bucket. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "versioning": { "$ref": "#/types/aws:s3/BucketVersioning:BucketVersioning", "description": "A state of [versioning](https://docs.aws.amazon.com/AmazonS3/latest/dev/Versioning.html) (documented below)\n" @@ -327821,8 +330221,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "versioning": { "$ref": "#/types/aws:s3/BucketVersioning:BucketVersioning", @@ -328598,8 +330997,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "versionId": { "type": "string", @@ -328733,6 +331131,13 @@ }, "description": "Map of tags to assign to the object. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "websiteRedirect": { "type": "string", "description": "Target URL for [website redirect](http://docs.aws.amazon.com/AmazonS3/latest/dev/how-to-page-redirect.html).\n\nIf no content is provided through `source`, `content` or `content_base64`, then the object will be empty.\n" @@ -328862,8 +331267,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "versionId": { "type": "string", @@ -329099,8 +331503,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "versionId": { "type": "string", @@ -329247,6 +331650,13 @@ }, "description": "Map of tags to assign to the object. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "websiteRedirect": { "type": "string", "description": "Target URL for [website redirect](http://docs.aws.amazon.com/AmazonS3/latest/dev/how-to-page-redirect.html).\n\nIf no content is provided through `source`, `content` or `content_base64`, then the object will be empty.\n\n\u003e **Note:** The provider ignores all leading `/`s in the object's `key` and treats multiple `/`s in the rest of the object's `key` as a single `/`, so values of `/index.html` and `index.html` correspond to the same S3 object as do `first//second///third//` and `first/second/third/`.\n" @@ -329400,8 +331810,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "versionId": { "type": "string", @@ -329953,8 +332362,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "versionings": { "type": "array", @@ -330109,6 +332517,13 @@ }, "description": "Map of tags to assign to the bucket. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n\nThe following arguments are deprecated, and will be removed in a future major version:\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "versionings": { "type": "array", "items": { @@ -330253,8 +332668,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "versionings": { "type": "array", @@ -330938,8 +333352,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "versionId": { "type": "string", @@ -331153,6 +333566,13 @@ }, "description": "Map of tags to assign to the object. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "websiteRedirect": { "type": "string", "description": "Specifies a target URL for [website redirect](http://docs.aws.amazon.com/AmazonS3/latest/dev/how-to-page-redirect.html).\n" @@ -331378,8 +333798,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "versionId": { "type": "string", @@ -331443,8 +333862,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -331542,8 +333960,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -331583,8 +334000,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -331644,8 +334060,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -331726,8 +334141,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -331796,8 +334210,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -331899,8 +334312,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -331933,6 +334345,13 @@ "type": "string" }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -331981,8 +334400,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -332424,8 +334842,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -332461,6 +334878,13 @@ "type": "string" }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -332505,8 +334929,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -332687,8 +335110,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "userProfileName": { "type": "string", @@ -332736,6 +335158,13 @@ }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "userProfileName": { "type": "string", "description": "The user profile name. At least one of `user_profile_name` or `space_name` required.\n", @@ -332791,8 +335220,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "userProfileName": { "type": "string", @@ -332838,8 +335266,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -332871,6 +335298,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -332912,8 +335346,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -332946,8 +335379,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -332972,6 +335404,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -333006,8 +335445,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -333068,8 +335506,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -333134,6 +335571,13 @@ "type": "string" }, "description": "A mapping of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -333206,8 +335650,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -333333,8 +335776,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -333373,6 +335815,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -333423,8 +335872,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -333508,8 +335956,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "url": { "type": "string", @@ -333592,6 +336039,13 @@ }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcId": { "type": "string", "description": "The ID of the Amazon Virtual Private Cloud (VPC) that Studio uses for communication.\n\nThe following arguments are optional:\n", @@ -333690,8 +336144,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "url": { "type": "string", @@ -333737,8 +336190,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -333767,6 +336219,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -333804,8 +336263,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -333864,8 +336322,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -333921,6 +336378,13 @@ "type": "string" }, "description": "A mapping of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -333984,8 +336448,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -334045,8 +336508,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -334108,6 +336570,13 @@ "type": "string" }, "description": "Map of resource tags for the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -334179,8 +336648,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -334229,8 +336697,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -334278,6 +336745,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -334335,8 +336809,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -334365,8 +336838,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "uiTemplate": { "$ref": "#/types/aws:sagemaker/HumanTaskUIUiTemplate:HumanTaskUIUiTemplate", @@ -334392,6 +336864,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "uiTemplate": { "$ref": "#/types/aws:sagemaker/HumanTaskUIUiTemplate:HumanTaskUIUiTemplate", "description": "The Liquid template for the worker user interface. See UI Template below.\n", @@ -334426,8 +336905,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "uiTemplate": { "$ref": "#/types/aws:sagemaker/HumanTaskUIUiTemplate:HumanTaskUIUiTemplate", @@ -334473,8 +336951,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -334508,6 +336985,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -334551,8 +337035,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -334687,8 +337170,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcConfig": { "$ref": "#/types/aws:sagemaker/ModelVpcConfig:ModelVpcConfig", @@ -334741,6 +337223,13 @@ }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcConfig": { "$ref": "#/types/aws:sagemaker/ModelVpcConfig:ModelVpcConfig", "description": "Specifies the VPC that you want your model to connect to. VpcConfig is used in hosting services and in batch transform.\n", @@ -334800,8 +337289,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcConfig": { "$ref": "#/types/aws:sagemaker/ModelVpcConfig:ModelVpcConfig", @@ -334839,8 +337327,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -334865,6 +337352,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -334899,8 +337393,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -334977,8 +337470,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -335003,6 +337495,13 @@ "type": "string" }, "description": "A mapping of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -335036,8 +337535,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -335131,8 +337629,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "url": { "type": "string", @@ -335233,6 +337730,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "volumeSize": { "type": "integer", "description": "The size, in GB, of the ML storage volume to attach to the notebook instance. The default value is 5 GB.\n" @@ -335336,8 +337840,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "url": { "type": "string", @@ -335461,8 +337964,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -335507,6 +338009,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -335561,8 +338070,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -335603,8 +338111,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -335634,6 +338141,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -335676,8 +338190,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -335761,8 +338274,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "url": { "type": "string", @@ -335810,6 +338322,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -335865,8 +338384,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "url": { "type": "string", @@ -335907,8 +338425,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -335940,6 +338457,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -335981,8 +338505,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -336023,8 +338546,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "userProfileName": { "type": "string", @@ -336065,6 +338587,13 @@ }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "userProfileName": { "type": "string", "description": "The name for the User Profile.\n", @@ -336117,8 +338646,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "userProfileName": { "type": "string", @@ -336273,8 +338801,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "workerAccessConfiguration": { "$ref": "#/types/aws:sagemaker/WorkteamWorkerAccessConfiguration:WorkteamWorkerAccessConfiguration", @@ -336322,6 +338849,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "workerAccessConfiguration": { "$ref": "#/types/aws:sagemaker/WorkteamWorkerAccessConfiguration:WorkteamWorkerAccessConfiguration", "description": "Use this optional parameter to constrain access to an Amazon S3 resource based on the IP address using supported IAM global condition keys. The Amazon S3 resource is accessed in the worker portal using a Amazon S3 presigned URL. see Worker Access Configuration details below.\n" @@ -336381,8 +338915,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "workerAccessConfiguration": { "$ref": "#/types/aws:sagemaker/WorkteamWorkerAccessConfiguration:WorkteamWorkerAccessConfiguration", @@ -336626,8 +339159,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -336656,6 +339188,13 @@ "type": "string" }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -336699,8 +339238,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -336733,8 +339271,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -336758,6 +339295,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -336791,8 +339335,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -336825,8 +339368,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -336850,6 +339392,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -336880,8 +339429,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -336973,8 +339521,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -337026,6 +339573,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "type": { "type": "string", "description": "The type of the schema. Valid values: `OpenApi3` or `JSONSchemaDraft4`.\n" @@ -337077,8 +339631,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -337150,8 +339703,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -337206,6 +339758,13 @@ "type": "string" }, "description": "Key-value map of user-defined tags that are attached to the secret. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -337264,8 +339823,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -337697,8 +340255,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "required": [ @@ -337802,8 +340359,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "type": "object" @@ -338646,8 +341202,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:securitylake/DataLakeTimeouts:DataLakeTimeouts" @@ -338713,8 +341268,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:securitylake/DataLakeTimeouts:DataLakeTimeouts" @@ -338785,8 +341339,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:securitylake/SubscriberTimeouts:SubscriberTimeouts" @@ -338896,8 +341449,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:securitylake/SubscriberTimeouts:SubscriberTimeouts" @@ -339017,8 +341569,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -339065,6 +341616,13 @@ "type": "string" }, "description": "A list of tags to associate with this stack. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -339121,8 +341679,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -339427,8 +341984,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -339458,6 +342014,13 @@ "type": "string" }, "description": "Tags to apply to the connection. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -339496,8 +342059,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -339769,8 +342331,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -339838,6 +342399,13 @@ }, "description": "Tags to apply to the product. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "type": { "type": "string", "description": "Type of product. See [AWS Docs](https://docs.aws.amazon.com/servicecatalog/latest/dg/API_CreateProduct.html#API_CreateProduct_RequestSyntax) for valid list of values.\n\nThe following arguments are optional:\n" @@ -339916,8 +342484,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -340123,8 +342690,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -340216,6 +342782,13 @@ "type": "string" }, "description": "Tags to apply to the provisioned product. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -340339,8 +342912,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -340768,8 +343340,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -340795,6 +343366,13 @@ "type": "string" }, "description": "A map of tags to assign to the namespace. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -340830,8 +343408,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -340940,8 +343517,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpc": { "type": "string", @@ -340972,6 +343548,13 @@ }, "description": "A map of tags to assign to the namespace. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpc": { "type": "string", "description": "The ID of VPC that you want to associate the namespace with.\n", @@ -341013,8 +343596,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpc": { "type": "string", @@ -341056,8 +343638,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -341082,6 +343663,13 @@ "type": "string" }, "description": "A map of tags to assign to the namespace. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -341116,8 +343704,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -341170,8 +343757,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -341224,6 +343810,13 @@ }, "description": "A map of tags to assign to the service. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "type": { "type": "string", "description": "If present, specifies that the service instances are only discoverable using the `DiscoverInstances` API operation. No DNS records is registered for the service instances. The only valid value is `HTTP`.\n", @@ -341280,8 +343873,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -342795,8 +345387,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "trackingOptions": { "$ref": "#/types/aws:sesv2/ConfigurationSetTrackingOptions:ConfigurationSetTrackingOptions", @@ -342843,6 +345434,12 @@ }, "description": "A map of tags to assign to the service. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, "trackingOptions": { "$ref": "#/types/aws:sesv2/ConfigurationSetTrackingOptions:ConfigurationSetTrackingOptions", "description": "An object that defines the open and click tracking options for emails that you send using the configuration set. See `tracking_options` Block for details.\n" @@ -342894,8 +345491,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "trackingOptions": { "$ref": "#/types/aws:sesv2/ConfigurationSetTrackingOptions:ConfigurationSetTrackingOptions", @@ -343005,8 +345601,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "topics": { "type": "array", @@ -343040,6 +345635,12 @@ }, "description": "Key-value map of resource tags for the contact list. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, "topics": { "type": "array", "items": { @@ -343085,8 +345686,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "topics": { "type": "array", @@ -343174,8 +345774,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "required": [ @@ -343201,6 +345800,12 @@ "type": "string" }, "description": "A map of tags to assign to the pool. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } } }, "requiredInputs": [ @@ -343234,8 +345839,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "type": "object" @@ -343281,8 +345885,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "verifiedForSendingStatus": { "type": "boolean", @@ -343322,6 +345925,13 @@ "type": "string" }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -343368,8 +345978,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "verifiedForSendingStatus": { "type": "boolean", @@ -343567,8 +346176,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -343588,6 +346196,13 @@ "type": "string" }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -343614,8 +346229,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -343767,8 +346381,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "tracingConfiguration": { "$ref": "#/types/aws:sfn/StateMachineTracingConfiguration:StateMachineTracingConfiguration", @@ -343832,6 +346445,13 @@ }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "tracingConfiguration": { "$ref": "#/types/aws:sfn/StateMachineTracingConfiguration:StateMachineTracingConfiguration", "description": "Selects whether AWS X-Ray tracing is enabled.\n" @@ -343909,8 +346529,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "tracingConfiguration": { "$ref": "#/types/aws:sfn/StateMachineTracingConfiguration:StateMachineTracingConfiguration", @@ -344155,8 +346774,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -344182,6 +346800,13 @@ "type": "string" }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -344216,8 +346841,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -344265,8 +346889,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -344307,6 +346930,13 @@ "type": "string" }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -344357,8 +346987,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -344682,8 +347311,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "version": { "type": "string", @@ -344738,6 +347366,13 @@ "type": "string" }, "description": "A list of tags associated with the signing profile. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -344800,8 +347435,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "version": { "type": "string", @@ -345413,8 +348047,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "tracingConfig": { "type": "string", @@ -345543,6 +348176,13 @@ }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "tracingConfig": { "type": "string", "description": "Tracing mode of an Amazon SNS topic. Valid values: `\"PassThrough\"`, `\"Active\"`.\n" @@ -345679,8 +348319,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "tracingConfig": { "type": "string", @@ -346075,8 +348714,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "url": { "type": "string", @@ -346176,6 +348814,13 @@ }, "description": "A map of tags to assign to the queue. If configured with a provider `default_tags` configuration block) present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "visibilityTimeoutSeconds": { "type": "integer", "description": "The visibility timeout for the queue. An integer from 0 to 43200 (12 hours). The default for this attribute is 30. For more information about visibility timeout, see [AWS docs](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/AboutVT.html).\n" @@ -346267,8 +348912,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "url": { "type": "string", @@ -346518,8 +349162,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -346564,6 +349207,13 @@ }, "description": "A map of tags to assign to the object. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n", "willReplaceOnChanges": true + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -346622,9 +349272,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead.", - "willReplaceOnChanges": true + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -346910,8 +349558,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeZoneId": { "type": "string", @@ -346999,8 +349646,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeZoneId": { "type": "string", @@ -347162,8 +349808,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetType": { "type": "string", @@ -347232,6 +349877,13 @@ }, "description": "A map of tags to assign to the object. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "targetType": { "type": "string", "description": "The target type which defines the kinds of resources the document can run on. For example, `/AWS::EC2::Instance`. For a list of valid resource types, see [AWS resource and property types reference](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).\n" @@ -347349,8 +350001,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetType": { "type": "string", @@ -347423,8 +350074,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -347485,6 +350135,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -347551,8 +350208,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -347921,8 +350577,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "tier": { "type": "string", @@ -347996,6 +350651,13 @@ }, "description": "Map of tags to assign to the object. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "tier": { "type": "string", "description": "Parameter tier to assign to the parameter. If not specified, will use the default parameter tier for the region. Valid tiers are `Standard`, `Advanced`, and `Intelligent-Tiering`. Downgrading an `Advanced` tier parameter to `Standard` will recreate the resource. For more information on parameter tiers, see the [AWS SSM Parameter tier comparison and guide](https://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-store-advanced-parameters.html).\n" @@ -348072,8 +350734,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "tier": { "type": "string", @@ -348187,8 +350848,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -348265,6 +350925,13 @@ "type": "string" }, "description": "Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -348350,8 +351017,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -348559,8 +351225,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -348590,6 +351255,13 @@ }, "description": "Map of tags to assign to the resource.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "type": { "type": "string", "description": "The type of contact engaged. A single contact is type PERSONAL and an escalation\nplan is type ESCALATION.\n\nThe following arguments are optional:\n", @@ -348628,8 +351300,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -348830,8 +351501,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -348855,6 +351525,13 @@ "additionalProperties": { "type": "string" } + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -348900,8 +351577,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -348953,8 +351629,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -348998,6 +351673,13 @@ "additionalProperties": { "type": "string" } + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -349050,8 +351732,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -349219,8 +351900,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -349324,8 +352004,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -349753,8 +352432,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -349793,6 +352471,13 @@ "type": "string" }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -349843,8 +352528,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -350009,8 +352693,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "trustedTokenIssuerConfiguration": { "$ref": "#/types/aws:ssoadmin/TrustedTokenIssuerTrustedTokenIssuerConfiguration:TrustedTokenIssuerTrustedTokenIssuerConfiguration", @@ -350092,8 +352775,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "trustedTokenIssuerConfiguration": { "$ref": "#/types/aws:ssoadmin/TrustedTokenIssuerTrustedTokenIssuerConfiguration:TrustedTokenIssuerTrustedTokenIssuerConfiguration", @@ -350211,8 +352893,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetArn": { "type": "string", @@ -350287,6 +352968,13 @@ }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "targetName": { "type": "string", "description": "The name of the iSCSI target used by initiators to connect to the target and as a suffix for the target ARN. The target name must be unique across all volumes of a gateway.\n", @@ -350365,8 +353053,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetArn": { "type": "string", @@ -350434,8 +353121,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "username": { "type": "string", @@ -350481,6 +353167,13 @@ }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "username": { "type": "string", "description": "The user name of the user credential that has permission to access the root share of the Amazon FSx file system. The user account must belong to the Amazon FSx delegated admin user group.\n" @@ -350534,8 +353227,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "username": { "type": "string", @@ -350648,8 +353340,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "tapeDriveType": { "type": "string", @@ -350745,6 +353436,13 @@ }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "tapeDriveType": { "type": "string", "description": "Type of tape drive to use for tape gateway. This provider cannot detect drift of this argument. Valid values: `IBM-ULT3580-TD5`.\n", @@ -350863,8 +353561,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "tapeDriveType": { "type": "string", @@ -350977,8 +353674,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcEndpointDnsName": { "type": "string", @@ -351083,6 +353779,13 @@ }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcEndpointDnsName": { "type": "string", "description": "The DNS name of the VPC endpoint for S3 PrivateLink.\n", @@ -351201,8 +353904,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcEndpointDnsName": { "type": "string", @@ -351334,8 +354036,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "validUserLists": { "type": "array", @@ -351467,6 +354168,13 @@ }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "validUserLists": { "type": "array", "items": { @@ -351611,8 +354319,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "validUserLists": { "type": "array", @@ -351689,8 +354396,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetArn": { "type": "string", @@ -351782,6 +354488,13 @@ }, "description": "Key-value mapping of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "targetName": { "type": "string", "description": "The name of the iSCSI target used by initiators to connect to the target and as a suffix for the target ARN. The target name must be unique across all volumes of a gateway.\n", @@ -351861,8 +354574,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "targetArn": { "type": "string", @@ -351932,8 +354644,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -351969,6 +354680,13 @@ "type": "string" }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -352014,8 +354732,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -352164,8 +354881,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "workflowExecutionRetentionPeriodInDays": { "type": "string", @@ -352202,6 +354918,13 @@ }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "workflowExecutionRetentionPeriodInDays": { "type": "string", "description": "Length of time that SWF will continue to retain information about the workflow execution after the workflow execution is complete, must be between 0 and 90 days.\n", @@ -352245,8 +354968,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "workflowExecutionRetentionPeriodInDays": { "type": "string", @@ -352348,8 +355070,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timelines": { "type": "array", @@ -352451,6 +355172,13 @@ }, "description": "Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcConfig": { "$ref": "#/types/aws:synthetics/CanaryVpcConfig:CanaryVpcConfig", "description": "Configuration block. Detailed below.\n" @@ -352559,8 +355287,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timelines": { "type": "array", @@ -352608,8 +355335,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -352630,6 +355356,13 @@ "type": "string" }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -352660,8 +355393,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -352763,8 +355495,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -352790,6 +355521,13 @@ "type": "string" }, "description": "Map of tags to assign to this resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -352827,8 +355565,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -352873,8 +355610,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -352916,6 +355652,13 @@ "type": "string" }, "description": "Map of tags to assign to this resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -352964,8 +355707,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -353004,8 +355746,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "required": [ @@ -353042,6 +355783,12 @@ "additionalProperties": { "type": "string" } + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } } }, "requiredInputs": [ @@ -353087,8 +355834,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "type": "object" @@ -353120,8 +355866,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "vocabularyFileUri": { "type": "string", @@ -353153,6 +355898,12 @@ }, "description": "A map of tags to assign to the MedicalVocabulary. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, "vocabularyFileUri": { "type": "string", "description": "The Amazon S3 location (URI) of the text file that contains your custom medical vocabulary.\n" @@ -353195,8 +355946,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "vocabularyFileUri": { "type": "string", @@ -353244,8 +355994,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "vocabularyFileUri": { "type": "string", @@ -353284,6 +356033,12 @@ }, "description": "A map of tags to assign to the Vocabulary. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, "vocabularyFileUri": { "type": "string", "description": "The Amazon S3 location (URI) of the text file that contains your custom vocabulary. Conflicts wth `phrases`.\n" @@ -353332,8 +356087,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "vocabularyFileUri": { "type": "string", @@ -353374,8 +356128,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "vocabularyFilterFileUri": { "type": "string", @@ -353413,6 +356166,12 @@ }, "description": "A map of tags to assign to the VocabularyFilter. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, "vocabularyFilterFileUri": { "type": "string", "description": "The Amazon S3 location (URI) of the text file that contains your custom VocabularyFilter. Conflicts with `words` argument.\n" @@ -353461,8 +356220,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "vocabularyFilterFileUri": { "type": "string", @@ -353661,8 +356419,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "required": [ @@ -353707,6 +356464,12 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } } }, "requiredInputs": [ @@ -353765,8 +356528,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "type": "object" @@ -353826,8 +356588,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "usage": { "type": "string", @@ -353878,6 +356639,12 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, "usage": { "type": "string", "description": "Specifies if a certificate is being used for signing or encryption. The valid values are SIGNING and ENCRYPTION.\n", @@ -353945,8 +356712,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "usage": { "type": "string", @@ -353999,8 +356765,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "url": { "type": "string", @@ -354043,6 +356808,12 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, "url": { "type": "string", "description": "The URL of the partners AS2 endpoint or SFTP endpoint.\n" @@ -354094,8 +356865,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "url": { "type": "string", @@ -354142,8 +356912,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "required": [ @@ -354177,6 +356946,12 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } } }, "requiredInputs": [ @@ -354222,8 +356997,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "type": "object" @@ -354341,8 +357115,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "url": { "type": "string", @@ -354458,6 +357231,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "url": { "type": "string", "description": "URL of the service endpoint used to authenticate users with an `identity_provider_type` of `API_GATEWAY`.\n" @@ -354581,8 +357361,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "url": { "type": "string", @@ -354781,8 +357560,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "userName": { "type": "string", @@ -354836,6 +357614,13 @@ }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "userName": { "type": "string", "description": "The name used for log in to your SFTP server.\n", @@ -354898,8 +357683,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "userName": { "type": "string", @@ -354947,8 +357731,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -354984,6 +357767,13 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -355029,8 +357819,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -355105,8 +357894,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "verifiedAccessGroupId": { "type": "string", @@ -355190,6 +357978,12 @@ }, "description": "Key-value tags for the Verified Access Endpoint. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, "verifiedAccessGroupId": { "type": "string", "description": "The ID of the Verified Access group to associate the endpoint with.\n\nThe following arguments are optional:\n" @@ -355278,8 +358072,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "verifiedAccessGroupId": { "type": "string", @@ -355334,8 +358127,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "verifiedaccessGroupArn": { "type": "string", @@ -355382,6 +358174,12 @@ }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, "verifiedaccessInstanceId": { "type": "string", "description": "The id of the verified access instance this group is associated with.\n\nThe following arguments are optional:\n" @@ -355432,8 +358230,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "verifiedaccessGroupArn": { "type": "string", @@ -355481,8 +358278,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "verifiedAccessTrustProviders": { "type": "array", @@ -355514,6 +358310,12 @@ "type": "string" }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } } }, "stateInputs": { @@ -355547,8 +358349,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "verifiedAccessTrustProviders": { "type": "array", @@ -355691,8 +358492,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "trustProviderType": { "type": "string", @@ -355739,6 +358539,12 @@ }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, "trustProviderType": { "type": "string", "description": "The type of trust provider can be either user or device-based.\n\nThe following arguments are optional:\n", @@ -355791,8 +358597,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } }, "trustProviderType": { "type": "string", @@ -356211,8 +359016,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "toPort": { "type": "integer", @@ -356330,8 +359134,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "toPort": { "type": "integer", @@ -356396,8 +359199,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "toPort": { "type": "integer", @@ -356515,8 +359317,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "toPort": { "type": "integer", @@ -356555,8 +359356,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "required": [ @@ -356582,6 +359382,12 @@ "additionalProperties": { "type": "string" } + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } } }, "requiredInputs": [ @@ -356619,8 +359425,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "type": "object" @@ -356736,8 +359541,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "required": [ @@ -356787,6 +359591,12 @@ "type": "string" }, "description": "A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + } } }, "requiredInputs": [ @@ -356849,8 +359659,7 @@ "type": "object", "additionalProperties": { "type": "string" - }, - "deprecationMessage": "Please use `tags` instead." + } } }, "type": "object" @@ -356903,8 +359712,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -356952,6 +359760,13 @@ "type": "string" }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -357011,8 +359826,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -357111,8 +359925,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -357148,6 +359961,13 @@ "type": "string" }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -357198,8 +360018,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -357232,8 +360051,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -357258,6 +360076,13 @@ "type": "string" }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -357288,8 +360113,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -357341,8 +360165,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -357372,6 +360195,13 @@ "type": "string" }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -357426,8 +360256,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -357471,8 +360300,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcIdentifier": { "type": "string", @@ -357507,6 +360335,13 @@ }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "vpcIdentifier": { "type": "string", "description": "The ID of the VPC.\n", @@ -357556,8 +360391,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "vpcIdentifier": { "type": "string", @@ -357599,8 +360433,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -357631,6 +360464,13 @@ }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "type": { "type": "string", "description": "The type of target group. Valid Values are `IP` | `LAMBDA` | `INSTANCE` | `ALB`\n\nThe following arguments are optional:\n", @@ -357672,8 +360512,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "type": { "type": "string", @@ -357946,8 +360785,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -357990,6 +360828,13 @@ "type": "string" }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -358041,8 +360886,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -358202,8 +361046,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -358236,6 +361079,13 @@ "type": "string" }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -358277,8 +361127,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -358318,8 +361167,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -358352,6 +361200,13 @@ "type": "string" }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -358393,8 +361248,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -358553,8 +361407,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -358596,6 +361449,13 @@ "type": "string" }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -358646,8 +361506,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -358917,8 +361776,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -358961,6 +361819,13 @@ "type": "string" }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -359012,8 +361877,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -359155,8 +362019,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -359189,6 +362052,13 @@ "type": "string" }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -359230,8 +362100,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -359271,8 +362140,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -359305,6 +362173,13 @@ "type": "string" }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -359346,8 +362221,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -359504,8 +362378,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -359547,6 +362420,13 @@ "type": "string" }, "description": "Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -359597,8 +362477,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -359749,8 +362628,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -359794,6 +362672,13 @@ "type": "string" }, "description": "An array of key:value pairs to associate with the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -359848,8 +362733,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -359896,8 +362780,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -359935,6 +362818,13 @@ "type": "string" }, "description": "An array of key:value pairs to associate with the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -359983,8 +362873,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -360044,8 +362933,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "visibilityConfig": { "$ref": "#/types/aws:wafv2/RuleGroupVisibilityConfig:RuleGroupVisibilityConfig", @@ -360107,6 +362995,13 @@ }, "description": "An array of key:value pairs to associate with the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "visibilityConfig": { "$ref": "#/types/aws:wafv2/RuleGroupVisibilityConfig:RuleGroupVisibilityConfig", "description": "Defines and enables Amazon CloudWatch metrics and web request sample collection. See Visibility Configuration below for details.\n" @@ -360176,8 +363071,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "visibilityConfig": { "$ref": "#/types/aws:wafv2/RuleGroupVisibilityConfig:RuleGroupVisibilityConfig", @@ -360258,8 +363152,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "tokenDomains": { "type": "array", @@ -360336,6 +363229,13 @@ }, "description": "Map of key-value pairs to associate with the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "tokenDomains": { "type": "array", "items": { @@ -360427,8 +363327,7 @@ "additionalProperties": { "type": "string" }, - "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "tokenDomains": { "type": "array", @@ -360822,8 +363721,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:workspaces/ConnectionAliasTimeouts:ConnectionAliasTimeouts" @@ -360881,8 +363779,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "timeouts": { "$ref": "#/types/aws:workspaces/ConnectionAliasTimeouts:ConnectionAliasTimeouts" @@ -360959,8 +363856,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "workspaceAccessProperties": { "$ref": "#/types/aws:workspaces/DirectoryWorkspaceAccessProperties:DirectoryWorkspaceAccessProperties", @@ -361024,6 +363920,13 @@ }, "description": "A map of tags assigned to the WorkSpaces directory. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "workspaceAccessProperties": { "$ref": "#/types/aws:workspaces/DirectoryWorkspaceAccessProperties:DirectoryWorkspaceAccessProperties", "description": "Specifies which devices and operating systems users can use to access their WorkSpaces. Defined below.\n" @@ -361106,8 +364009,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "workspaceAccessProperties": { "$ref": "#/types/aws:workspaces/DirectoryWorkspaceAccessProperties:DirectoryWorkspaceAccessProperties", @@ -361155,8 +364057,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -361187,6 +364088,13 @@ "type": "string" }, "description": "A map of tags assigned to the WorkSpaces directory. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "stateInputs": { @@ -361221,8 +364129,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -361267,8 +364174,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "userName": { "type": "string", @@ -361320,6 +364226,13 @@ }, "description": "The tags for the WorkSpace. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "userName": { "type": "string", "description": "The user name of the user for the WorkSpace. This user name must exist in the directory for the WorkSpace.\n", @@ -361387,8 +364300,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "userName": { "type": "string", @@ -361487,8 +364399,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "required": [ @@ -361518,6 +364429,13 @@ "type": "string" }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level\n" + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "requiredInputs": [ @@ -361556,8 +364474,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object" @@ -361625,8 +364542,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "urlPath": { "type": "string", @@ -361703,6 +364619,13 @@ }, "description": "Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level\n" }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" + }, "urlPath": { "type": "string", "description": "Matches the path from a request URL.\n" @@ -361788,8 +364711,7 @@ "additionalProperties": { "type": "string" }, - "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n", - "deprecationMessage": "Please use `tags` instead." + "description": "A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.\n" }, "urlPath": { "type": "string", @@ -381544,6 +384466,13 @@ "additionalProperties": { "type": "string" } + }, + "tagsAll": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "(Optional) Key-value map of resource tags, including those inherited from the provider `default_tags` configuration block.\n" } }, "type": "object", diff --git a/provider/provider_python_test.go b/provider/provider_python_test.go index 353c7acff4e..7c59091820e 100644 --- a/provider/provider_python_test.go +++ b/provider/provider_python_test.go @@ -6,16 +6,12 @@ package provider import ( - "bytes" - "context" - "fmt" "path/filepath" "strings" "testing" "time" "github.com/pulumi/pulumi/pkg/v3/testing/integration" - "github.com/stretchr/testify/require" ) func TestRegress3196(t *testing.T) { @@ -61,7 +57,6 @@ func TestRegress3887(t *testing.T) { // Make sure that importing an AWS targetGroup succeeds. func TestRegress2534(t *testing.T) { - ctx := context.Background() ptest := pulumiTest(t, filepath.Join("test-programs", "regress-2534")) upResult := ptest.Up() targetGroupArn := upResult.Outputs["targetGroupArn"].Value.(string) @@ -71,24 +66,8 @@ func TestRegress2534(t *testing.T) { workdir := workspace.WorkDir() t.Logf("workdir = %s", workdir) - exec := func(args ...string) { - var env []string - for k, v := range workspace.GetEnvVars() { - env = append(env, fmt.Sprintf("%s=%s", k, v)) - } - stdin := bytes.NewReader([]byte{}) - var arguments []string - arguments = append(arguments, args...) - arguments = append(arguments, "-s", ptest.CurrentStack().Name()) - s1, s2, code, err := workspace.PulumiCommand().Run(ctx, workdir, stdin, nil, nil, env, arguments...) - t.Logf("import stdout: %s", s1) - t.Logf("import stderr: %s", s2) - t.Logf("code=%v", code) - require.NoError(t, err) - } - - exec("import", "aws:lb/targetGroup:TargetGroup", "newtg", targetGroupArn, "--yes") - exec("state", "unprotect", strings.ReplaceAll(targetGroupUrn, "::test", "::newtg"), "--yes") + execPulumi(t, ptest, workdir, "import", "aws:lb/targetGroup:TargetGroup", "newtg", targetGroupArn, "--yes") + execPulumi(t, ptest, workdir, "state", "unprotect", strings.ReplaceAll(targetGroupUrn, "::test", "::newtg"), "--yes") } func getPythonBaseOptions(t *testing.T) integration.ProgramTestOptions { diff --git a/provider/provider_test.go b/provider/provider_test.go index e7885ab2980..8d33202ff7f 100644 --- a/provider/provider_test.go +++ b/provider/provider_test.go @@ -2,6 +2,8 @@ package provider import ( + "bytes" + "context" "encoding/json" "fmt" "os" @@ -34,6 +36,24 @@ func getEnvRegion(t *testing.T) string { return envRegion } +func execPulumi(t *testing.T, ptest *pulumitest.PulumiTest, workdir string, args ...string) { + ctx := context.Background() + var env []string + workspace := ptest.CurrentStack().Workspace() + for k, v := range workspace.GetEnvVars() { + env = append(env, fmt.Sprintf("%s=%s", k, v)) + } + stdin := bytes.NewReader([]byte{}) + var arguments []string + arguments = append(arguments, args...) + arguments = append(arguments, "-s", ptest.CurrentStack().Name()) + s1, s2, code, err := workspace.PulumiCommand().Run(ctx, workdir, stdin, nil, nil, env, arguments...) + t.Logf("import stdout: %s", s1) + t.Logf("import stderr: %s", s2) + t.Logf("code=%v", code) + require.NoError(t, err) +} + type testProviderUpgradeOptions struct { baselineVersion string linkNodeSDK bool diff --git a/provider/provider_yaml_test.go b/provider/provider_yaml_test.go index 571fec4aa22..387733fa5b4 100644 --- a/provider/provider_yaml_test.go +++ b/provider/provider_yaml_test.go @@ -14,16 +14,25 @@ import ( "os/exec" "path/filepath" "runtime" + "sort" "strings" "testing" + "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/config" + appconfigsdk "github.com/aws/aws-sdk-go-v2/service/appconfig" s3sdk "github.com/aws/aws-sdk-go-v2/service/s3" + "github.com/aws/aws-sdk-go-v2/service/s3/types" "github.com/pulumi/providertest/pulumitest" "github.com/pulumi/providertest/pulumitest/assertpreview" "github.com/pulumi/providertest/pulumitest/opttest" + "github.com/pulumi/pulumi/sdk/v3/go/auto" + "github.com/pulumi/pulumi/sdk/v3/go/auto/optpreview" + "github.com/pulumi/pulumi/sdk/v3/go/auto/optrefresh" + "github.com/pulumi/pulumi/sdk/v3/go/auto/optup" "github.com/pulumi/pulumi/sdk/v3/go/common/apitype" "github.com/pulumi/pulumi/sdk/v3/go/common/util/contract" + "github.com/pulumi/pulumi/sdk/v3/go/pulumi" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) @@ -145,6 +154,7 @@ func TestSecretVersionUpgrade(t *testing.T) { } func TestRdsParameterGroupUnclearDiff(t *testing.T) { + t.Parallel() if testing.Short() { t.Skipf("Skipping in testing.Short() mode, assuming this is a CI run without credentials") } @@ -234,6 +244,7 @@ resources: tc := tc t.Run(tc.name, func(t *testing.T) { + t.Parallel() workdir := t.TempDir() err := os.WriteFile(filepath.Join(workdir, "Pulumi.yaml"), []byte(tc.file1), 0o600) @@ -294,6 +305,7 @@ func randSeq(n int) string { } func TestNonIdempotentSnsTopic(t *testing.T) { + t.Parallel() ptest := pulumiTest(t, filepath.Join("test-programs", "non-idempotent-sns-topic")) ptest.InstallStack("test") @@ -306,6 +318,7 @@ func TestNonIdempotentSnsTopic(t *testing.T) { } func TestOpenZfsFileSystemUpgrade(t *testing.T) { + t.Parallel() if testing.Short() { t.Skipf("Skipping in testing.Short() mode, assuming this is a CI run without credentials") } @@ -344,6 +357,7 @@ resources: // test that we can upgrade from the previous version which accepted a string for `subnetIds` // to the new version which accepts a list t.Run("upgrade", func(t *testing.T) { + t.Parallel() pulumiTest := testProviderCodeChanges(t, &testProviderCodeChangesOptions{ firstProgram: firstProgram, firstProgramOptions: []opttest.Option{ @@ -369,6 +383,7 @@ resources: // we use a test with a snapshot since this test is only useful the first time, once // we know it works it should continue to work. t.Run("new-version", func(t *testing.T) { + t.Parallel() err = os.WriteFile(filepath.Join(workdir, "Pulumi.yaml"), secondProgram, 0o600) assert.NoError(t, err) pulumiTest := pulumitest.NewPulumiTest(t, workdir, @@ -384,6 +399,7 @@ resources: // Make sure that legacy Bucket supports deleting tags out of band and detecting drift. func TestRegress3674(t *testing.T) { + t.Parallel() ptest := pulumiTest(t, filepath.Join("test-programs", "regress-3674"), opttest.SkipInstall()) upResult := ptest.Up() bucketName := upResult.Outputs["bucketName"].Value.(string) @@ -399,6 +415,7 @@ func TestRegress3674(t *testing.T) { // Ensure that pulumi-aws can authenticate using IMDS API when Pulumi is running in a context where that is made // available such as an EC2 instance. func TestIMDSAuth(t *testing.T) { + t.Parallel() var localProviderBuild string actual := fmt.Sprintf("%s/%s", runtime.GOOS, runtime.GOARCH) expected := "linux/amd64" @@ -437,6 +454,7 @@ func TestIMDSAuth(t *testing.T) { } } t.Run("IDMSv2", func(t *testing.T) { + t.Parallel() ptest := pulumiTest(t, filepath.Join("test-programs", "imds-auth", "imds-v2"), opttest.SkipInstall()) ptest.SetConfig("localProviderBuild", localProviderBuild) result := ptest.Up() @@ -452,6 +470,7 @@ func TestIMDSAuth(t *testing.T) { // // See https://github.com/pulumi/pulumi-aws/issues/2796 func TestS3BucketObjectDeprecation(t *testing.T) { + t.Parallel() ptest := pulumiTest(t, filepath.Join("test-programs", "regress-2796"), opttest.SkipInstall()) result := ptest.Up() t.Logf("STDOUT: %v", result.StdOut) @@ -459,7 +478,434 @@ func TestS3BucketObjectDeprecation(t *testing.T) { require.NotContains(t, result.StdOut+result.StdErr, "aws_s3_object") } -func configureS3() *s3sdk.Client { +type tagsTestStep struct { + // The name of the Pulumi program + name string + + // The type token of the resource, i.e. aws:s3:Bucket + token string + + // The pulumi type of the resource, i.e. aws:s3/bucket:Bucket + typ string + + // Constant properties for the primary resource under test. + // + // This cannot include the tags property, which will be adjusted by the test. + properties map[string]interface{} + + // List of tags to add to the resource + tags map[string]interface{} + + // List of default tags to add to the provider + defaultTags map[string]interface{} + + // List of tag keys to add to the provider `ignoreTags.Keys` property + ignoreTagKeys []string + + // Function to run prior to _any_ import step + preImportHook func(t *testing.T, outputs auto.OutputMap) + + // Function to run after running the first up. This can be used to + // run extra validation + postUpHook func(t *testing.T, outputs auto.OutputMap) + + // Other is a string that is inserted into the test program. It is intended to be + // used to provision supporting resources in tests. + other string + + // If skip is non-empty, the test will be skipped with `skip` as the given reason. + skip string +} + +// TestAccDefaultTags tries to test all the scenarios that might affect provider defaultTags / resource tags +// i.e. up, refresh, preview, import, etc +func TestAccDefaultTags(t *testing.T) { + t.Parallel() + if testing.Short() { + t.Skipf("Skipping in testing.Short() mode, assuming this is a CI run without credentials") + } + + isNil := func(val interface{}) bool { + if val == nil { + return true + } + v, ok := val.(map[string]interface{}) + return ok && len(v) == 0 + } + validateOutputTags := func(outputs auto.OutputMap, expectedTagsAll map[string]interface{}) { + stackOutputTagsAll := outputs["actualAll"] + if !isNil(expectedTagsAll) || !isNil(stackOutputTagsAll) { + assert.Equal(t, expectedTagsAll, stackOutputTagsAll.Value) + } + } + + steps := []tagsTestStep{ + // Pulumi maintains it's own version of aws:s3:Bucket in + // `s3legacy/bucket_legacy.go`. Because we don't have any + // terraform-provider-aws maintainers to ensure our tagging works the same + // way as other resource's tagging, we give our own bucket special testing + // to make sure that tags work. + { + name: "legacy", token: "aws:s3:Bucket", typ: "aws:s3/bucket:Bucket", + tags: map[string]interface{}{ + "LocalTag": "foo", + }, + defaultTags: map[string]interface{}{ + "GlobalTag": "bar", + }, + postUpHook: func(t *testing.T, outputs auto.OutputMap) { + validateOutputTags(outputs, map[string]interface{}{ + "LocalTag": "foo", + "GlobalTag": "bar", + }) + bucketName := outputs["id"].Value.(string) + tags := getBucketTagging(context.Background(), bucketName) + assert.Subset(t, tags, []types.Tag{ + { + Key: pulumi.StringRef("LocalTag"), + Value: pulumi.StringRef("foo"), + }, + { + Key: pulumi.StringRef("GlobalTag"), + Value: pulumi.StringRef("bar"), + }, + }) + }, + }, + { + name: "legacy_ignore_tags", token: "aws:s3:Bucket", typ: "aws:s3/bucket:Bucket", + tags: map[string]interface{}{ + "LocalTag": "foo", + }, + ignoreTagKeys: []string{"IgnoreKey"}, + preImportHook: func(t *testing.T, outputs auto.OutputMap) { + t.Helper() + resArn := outputs["id"].Value.(string) + addBucketTags(context.Background(), resArn, map[string]string{ + "IgnoreKey": "foo", + }) + }, + defaultTags: map[string]interface{}{ + "GlobalTag": "bar", + }, + postUpHook: func(t *testing.T, outputs auto.OutputMap) { + validateOutputTags(outputs, map[string]interface{}{ + "LocalTag": "foo", + "GlobalTag": "bar", + }) + }, + }, + + // Both aws:cognito:UserPool and aws:s3:BucketV2 are full SDKv2 resources managed + // by Terraform, but they have different requirements for successful tag + // interactions. That is why we have tests for both resources. + { + name: "bucket", token: "aws:s3:BucketV2", typ: "aws:s3/bucketV2:BucketV2", + tags: map[string]interface{}{ + "LocalTag": "foo", + }, + postUpHook: func(t *testing.T, outputs auto.OutputMap) { + validateOutputTags(outputs, map[string]interface{}{ + "LocalTag": "foo", + "GlobalTag": "bar", + }) + }, + defaultTags: map[string]interface{}{ + "GlobalTag": "bar", + }, + }, + { + name: "bucket_ignore_tags", token: "aws:s3:BucketV2", typ: "aws:s3/bucketV2:BucketV2", + tags: map[string]interface{}{ + "LocalTag": "foo", + }, + postUpHook: func(t *testing.T, outputs auto.OutputMap) { + validateOutputTags(outputs, map[string]interface{}{ + "LocalTag": "foo", + "GlobalTag": "bar", + }) + }, + defaultTags: map[string]interface{}{ + "GlobalTag": "bar", + }, + ignoreTagKeys: []string{"IgnoreKey"}, + preImportHook: func(t *testing.T, outputs auto.OutputMap) { + t.Helper() + resArn := outputs["id"].Value.(string) + addBucketTags(context.Background(), resArn, map[string]string{ + "IgnoreKey": "foo", + }) + }, + }, + { + name: "sdkv2", token: "aws:cognito:UserPool", typ: "aws:cognito/userPool:UserPool", + tags: map[string]interface{}{ + "LocalTag": "foo", + }, + defaultTags: map[string]interface{}{ + "GlobalTag": "bar", + }, + postUpHook: func(t *testing.T, outputs auto.OutputMap) { + validateOutputTags(outputs, map[string]interface{}{ + "LocalTag": "foo", + "GlobalTag": "bar", + }) + }, + properties: map[string]interface{}{ + // aliasAttributes is necessary because otherwise we don't + // see a clean initial refresh + "aliasAttributes": []interface{}{"email"}, + }, + }, + + // A PF resource (appconfig:Environment) + // PF resources deal with tags differently + { + name: "pf", token: "aws:appconfig:Environment", typ: "aws:appconfig/environment:Environment", + tags: map[string]interface{}{ + "LocalTag": "foo", + }, + defaultTags: map[string]interface{}{ + "GlobalTag": "bar", + }, + postUpHook: func(t *testing.T, outputs auto.OutputMap) { + validateOutputTags(outputs, map[string]interface{}{ + "LocalTag": "foo", + "GlobalTag": "bar", + }) + }, + other: ` + app: + type: aws:appconfig:Application`, + properties: map[string]interface{}{ + "applicationId": "${app.id}", + }, + }, + { + name: "pf_ignore_tags", token: "aws:appconfig:Environment", typ: "aws:appconfig/environment:Environment", + tags: map[string]interface{}{ + "LocalTag": "foo", + }, + ignoreTagKeys: []string{"IgnoreKey"}, + preImportHook: func(t *testing.T, outputs auto.OutputMap) { + t.Helper() + resArn := outputs["resArn"].Value.(string) + addAppconfigEnvironmentTags(context.Background(), resArn, map[string]string{ + "IgnoreKey": "foo", + }) + }, + defaultTags: map[string]interface{}{ + "GlobalTag": "bar", + }, + postUpHook: func(t *testing.T, outputs auto.OutputMap) { + validateOutputTags(outputs, map[string]interface{}{ + "LocalTag": "foo", + "GlobalTag": "bar", + }) + }, + other: ` + app: + type: aws:appconfig:Application`, + properties: map[string]interface{}{ + "applicationId": "${app.id}", + }, + }, + } + + for _, step := range steps { + step := step + t.Run(step.name, func(t *testing.T) { + t.Parallel() + if reason := step.skip; reason != "" { + t.Skipf(reason) + } + testTagsPulumiLifecycle(t, step) + }) + } +} + +// testTagsPulumiLifecycle tests the complete lifecycle of a pulumi program +// Scenarios that this tests: +// 1. `Up` with both provider `defaultTags`/`ignoreTags` and resource level `tags` +// 1a. Run validations on result +// 2. `Refresh` with no changes +// 3. `Import` using the resource option. Ensures resource can be successfully imported +// 3a. Allows for a hook to be run prior to import being run. e.g. Add tags remotely +// 4. `Import` using the CLI. Ensures resources can be successfully imported +// 4a. Allows for a hook to be run prior to import being run. e.g. Add tags remotely +// 5. `Refresh` with no changes +func testTagsPulumiLifecycle(t *testing.T, step tagsTestStep) { + t.Helper() + ctx := context.Background() + + stepDir, err := os.MkdirTemp(os.TempDir(), step.name) + assert.NoError(t, err) + fpath := filepath.Join(stepDir, "Pulumi.yaml") + + generateTagsTest(t, step, fpath, "") + ptest := pulumiTest(t, stepDir, opttest.TestInPlace()) + stack := ptest.CurrentStack() + + t.Log("Initial deployment...") + upRes, err := stack.Up(ctx) + assert.NoError(t, err) + t.Logf("stderr: %s", upRes.StdErr) + t.Logf("stdout: %s", upRes.StdOut) + outputs := upRes.Outputs + urn := outputs["urn"].Value.(string) + id := outputs["id"].Value.(string) + providerUrn := outputs["providerUrn"].Value.(string) + if step.postUpHook != nil { + step.postUpHook(t, outputs) + } + + t.Log("refresh...") + _, err = stack.Refresh(ctx, optrefresh.ExpectNoChanges()) + assert.NoError(t, err) + + t.Log("delete state...") + execPulumi(t, ptest, stepDir, "state", "delete", urn) + + // import using the import resource option + t.Log("up with import...") + if step.preImportHook != nil { + step.preImportHook(t, outputs) + } + generateTagsTest(t, step, fpath, id) + upRes, err = stack.Up(ctx, optup.Diff()) + assert.NoError(t, err) + changes := *upRes.Summary.ResourceChanges + assert.Equal(t, 1, changes["import"]) + + t.Log("delete state...") + execPulumi(t, ptest, stepDir, "state", "delete", urn) + + t.Log("import from cli...") + if step.preImportHook != nil { + step.preImportHook(t, outputs) + } + generateTagsTest(t, step, fpath, "") + execPulumi(t, ptest, stepDir, "import", step.typ, "res", id, "--provider", fmt.Sprintf("aws-provider=%s", providerUrn), "--yes") + execPulumi(t, ptest, stepDir, "state", "unprotect", urn, "--yes") + + // need to run an up to fix the state. It should be a no-op + // re https://github.com/pulumi/pulumi-aws/issues/4204 + upRes, err = stack.Up(ctx) + assert.NoError(t, err) + for k := range *upRes.Summary.ResourceChanges { + if k != "same" { + t.Fatal("expected no changes") + } + } + + t.Log("preview with refresh...") + _, err = stack.Preview(ctx, optpreview.Refresh(), optpreview.ExpectNoChanges()) + assert.NoError(t, err) +} + +// generateTagsTest generates a pulumi program for the given test step +// and writes it to the test directory +func generateTagsTest(t *testing.T, step tagsTestStep, testPath string, importId string) { + template := `name: test-aws-%s +runtime: yaml +resources: + aws-provider: + type: pulumi:providers:aws%s%s + res: + type: %s%s%s +outputs: + actual: ${res.tags} + actualAll: ${res.tagsAll} + urn: ${res.urn} + id: ${res.id} + resArn: ${res.arn} + providerUrn: ${aws-provider.urn}` + + options := map[string]interface{}{ + "provider": "${aws-provider}", + } + + if importId != "" { + options["import"] = importId + } + + var expandMap func(level int, v interface{}) string + expandMap = func(level int, v interface{}) string { + indent := "\n" + strings.Repeat(" ", level) + + var body string + switch v := v.(type) { + case nil: + return "" + case string: + body = v + case []string: + for _, v := range v { + body += indent + "- " + strings.TrimSpace(expandMap(level+1, v)) + } + case []interface{}: + for _, v := range v { + body += indent + "- " + strings.TrimSpace(expandMap(level+1, v)) + } + case map[string]interface{}: + sortedKeys := make([]string, len(v)) + for k := range v { + sortedKeys = append(sortedKeys, k) + } + sort.Strings(sortedKeys) + for _, k := range sortedKeys { + v := v[k] + + val := expandMap(level+1, v) + if val == "" { + continue + } + body += indent + k + ": " + val + } + default: + t.Logf("Unknown value type %T", v) + t.FailNow() + } + + return body + } + + expandProps := func(key string, props ...map[string]interface{}) string { + a := map[string]interface{}{} + for _, arg := range props { + for k, v := range arg { + a[k] = v + } + } + + return expandMap(2, map[string]interface{}{ + key: a, + }) + } + + providerProps := map[string]interface{}{ + "defaultTags": map[string]interface{}{ + "tags": step.defaultTags, + }, + } + if step.ignoreTagKeys != nil { + providerProps["ignoreTags"] = map[string]interface{}{ + "keys": step.ignoreTagKeys, + } + } + + body := fmt.Sprintf(template, step.name, + expandProps("properties", providerProps), step.other, step.token, + expandProps("options", options), + expandProps("properties", map[string]interface{}{ + "tags": step.tags, + }, step.properties)) + + t.Logf("template for %s: \n%s", step.name, body) + require.NoError(t, os.WriteFile(testPath, []byte(body), 0600)) +} + +func loadAwsDefaultConfig() aws.Config { loadOpts := []func(*config.LoadOptions) error{} if p, ok := os.LookupEnv("AWS_PROFILE"); ok { loadOpts = append(loadOpts, config.WithSharedConfigProfile(p)) @@ -469,9 +915,77 @@ func configureS3() *s3sdk.Client { } cfg, err := config.LoadDefaultConfig(context.TODO(), loadOpts...) contract.AssertNoErrorf(err, "failed to load AWS config") + + return cfg +} + +func configureS3() *s3sdk.Client { + cfg := loadAwsDefaultConfig() return s3sdk.NewFromConfig(cfg) } +func configureAppconfig() *appconfigsdk.Client { + cfg := loadAwsDefaultConfig() + return appconfigsdk.NewFromConfig(cfg) +} + +func addAppconfigEnvironmentTags(ctx context.Context, envArn string, tags map[string]string) { + appconfig := configureAppconfig() + existingTags, err := appconfig.ListTagsForResource(ctx, &appconfigsdk.ListTagsForResourceInput{ + ResourceArn: &envArn, + }) + contract.AssertNoErrorf(err, "failed to list tags for appconfig env") + + for k, v := range existingTags.Tags { + if _, exists := tags[k]; !exists { + tags[k] = v + } + } + + _, err = appconfig.TagResource(ctx, &appconfigsdk.TagResourceInput{ + ResourceArn: &envArn, + Tags: tags, + }) + contract.AssertNoErrorf(err, "error tagging appconfig env") +} + +func getBucketTagging(ctx context.Context, awsBucket string) []types.Tag { + s3 := configureS3() + tagging, err := s3.GetBucketTagging(ctx, &s3sdk.GetBucketTaggingInput{ + Bucket: &awsBucket, + }) + contract.AssertNoErrorf(err, "failed to get bucket tagging") + return tagging.TagSet +} + +func addBucketTags(ctx context.Context, bucketName string, tags map[string]string) { + s3 := configureS3() + existingTags := getBucketTagging(ctx, bucketName) + + newTags := []types.Tag{} + + for k, v := range tags { + newTags = append(newTags, types.Tag{ + Key: &k, + Value: &v, + }) + } + + for _, v := range existingTags { + if _, exists := tags[*v.Key]; !exists { + newTags = append(newTags, v) + } + } + + _, err := s3.PutBucketTagging(ctx, &s3sdk.PutBucketTaggingInput{ + Bucket: &bucketName, + Tagging: &types.Tagging{ + TagSet: newTags, + }, + }) + contract.AssertNoErrorf(err, "error putting bucket tags") +} + func deleteBucketTagging(ctx context.Context, awsBucket string) { s3 := configureS3() _, err := s3.DeleteBucketTagging(ctx, &s3sdk.DeleteBucketTaggingInput{ @@ -479,3 +993,12 @@ func deleteBucketTagging(ctx context.Context, awsBucket string) { }) contract.AssertNoErrorf(err, "failed to delete bucket tagging") } + +func getCwd(t *testing.T) string { + cwd, err := os.Getwd() + if err != nil { + t.FailNow() + } + + return cwd +} diff --git a/provider/resources.go b/provider/resources.go index 0a84ace2203..0f9a0bb2752 100644 --- a/provider/resources.go +++ b/provider/resources.go @@ -5929,8 +5929,8 @@ compatibility shim in favor of the new "name" field.`) return true } - // We have ensured that this resource is using upstream's generic tagging - // mechanism, so override check so it works. + // The bridge applies and cannot handle a `__defaults: []` tag + // so remote that from the tags if callback := prov.Resources[key].PreCheckCallback; callback != nil { prov.Resources[key].PreCheckCallback = func( ctx context.Context, config resource.PropertyMap, meta resource.PropertyMap, @@ -5945,21 +5945,6 @@ compatibility shim in favor of the new "name" field.`) prov.Resources[key].PreCheckCallback = applyTags } - if prov.Resources[key].GetFields() == nil { - prov.Resources[key].Fields = map[string]*tfbridge.SchemaInfo{} - } - fields := prov.Resources[key].GetFields() - - if _, ok := fields["tags_all"]; !ok { - fields["tags_all"] = &tfbridge.SchemaInfo{} - } - - // Upstream provider is edited to unmark tags_all as computed internally so that - // Pulumi provider internals can set it, but the user should not be able to set it. - fields["tags_all"].MarkAsComputedOnly = tfbridge.True() - fields["tags_all"].DeprecationMessage = "Please use `tags` instead." - fields["tags_all"].MarkAsOptional = tfbridge.False() - return true }) diff --git a/provider/tags.go b/provider/tags.go index 40b1ef8307a..ab99484afd1 100644 --- a/provider/tags.go +++ b/provider/tags.go @@ -22,27 +22,6 @@ import ( "github.com/pulumi/pulumi/sdk/v3/go/common/util/contract" ) -// Apply provider tags to an individual resource. -// -// Historically, Pulumi has struggles to handle the "tags" and "tags_all" fields correctly: -// - https://github.com/pulumi/pulumi-aws/issues/2633 -// - https://github.com/pulumi/pulumi-aws/issues/1655 -// -// terraform-provider-aws has also struggled with implementing their desired behavior: -// - https://github.com/hashicorp/terraform-provider-aws/issues/29747 -// - https://github.com/hashicorp/terraform-provider-aws/issues/29842 -// - https://github.com/hashicorp/terraform-provider-aws/issues/24449 -// -// The Terraform lifecycle simply does not have a good way to map provider configuration -// onto resource values, so terraform-provider-aws is forced to work around limitations in -// unreliable ways. For example, terraform-provider-aws does not apply tags correctly with -// -refresh=false. -// -// This gives pulumi the same limitations by default. However, unlike Terraform, Pulumi -// does have a clear way to insert provider configuration into resource properties: -// Check. By writing a custom check function that applies "default_tags" to "tags" before -// the Terraform provider sees any resource configuration, we can give a consistent, -// reliable and good experience for Pulumi users. func applyTags( ctx context.Context, config resource.PropertyMap, meta resource.PropertyMap, ) (resource.PropertyMap, error) { @@ -51,72 +30,41 @@ func applyTags( if t, ok := config["tags"]; ok { configTags = t } - allTags, err := mergeTags(ctx, configTags, meta) + + allTags, err := cleanTags(ctx, configTags) if err != nil { return nil, err } - if allTags.IsNull() { - delete(ret, "tags") - return ret, nil - } + ret["tags"] = allTags - ret["tagsAll"] = allTags return ret, nil } -// Wrap mergeTagsSimple with taking care of unknowns, secrets and outputs. -func mergeTags( - ctx context.Context, tags resource.PropertyValue, meta resource.PropertyMap, +func cleanTags( + ctx context.Context, tags resource.PropertyValue, ) (resource.PropertyValue, error) { // Any unknowns make the result unknown. - if resource.NewObjectProperty(meta).ContainsUnknowns() || tags.ContainsUnknowns() { + if tags.ContainsUnknowns() { return resource.NewOutputProperty(resource.Output{Known: false}), nil } // Expect the Pulumi CLI to be shielding Check from secrets. contract.Assertf(!tags.ContainsSecrets(), "PreCheckCallback got secrets in config") - contract.Assertf(!meta.ContainsSecrets(), "PreCheckCallback got secrets in meta") - - var defaultTags awsShim.TagConfig - - // awsShim.NewTagConfig accepts (context.Context, i interface{}) where i can be one of - // map[string]interface{} among other types. .Mappable() produces a map[string]interface{} - // where every value is of type string. This is well handled by awsShim.NewTagConfig. - // - // config values are guaranteed to be of the correct type because they have already been - // seen and approved of by the provider, which verifies its configuration is well typed. - - if defaults, ok := meta["defaultTags"]; ok { - if defaults.IsObject() { - defaults := defaults.ObjectValue() - tags, ok := defaults["tags"] - if ok { - defaultTags = awsShim.NewTagConfig(ctx, tags.Mappable()) - } - } - } - - ignoredTags := &awsShim.TagIgnoreConfig{} - if ignores, ok := meta["ignoreTags"]; ok { - if keys, ok := ignores.ObjectValue()["keys"]; ok { - ignoredTags.Keys = awsShim.NewTagConfig(ctx, keys.Mappable()).Tags - } - if keys, ok := ignores.ObjectValue()["keyPrefixes"]; ok { - ignoredTags.KeyPrefixes = awsShim.NewTagConfig(ctx, keys.Mappable()).Tags - } - } var resourceTags awsShim.TagConfig if tags.IsObject() { resourceTags = awsShim.NewTagConfig(ctx, tags.Mappable()) } - allTags := defaultTags.MergeTags(resourceTags.Tags).IgnoreConfig(ignoredTags) + allTags := resourceTags.Tags if len(allTags) > 0 { allTagProperties := make(resource.PropertyMap, len(allTags)) for k, v := range allTags { + if k == "__defaults" { + continue + } pk := resource.PropertyKey(k) allTagProperties[pk] = resource.NewStringProperty(v.ValueString()) } diff --git a/upstream-tools/global-replacements.json b/upstream-tools/global-replacements.json index 27efa4fad21..46467e5c1e3 100644 --- a/upstream-tools/global-replacements.json +++ b/upstream-tools/global-replacements.json @@ -2,16 +2,6 @@ { "glob": "internal/service/**/*.go", "replacements": [ - { - "regExp": true, - "old": "\"tags_all\":(\\s+)tftags.TagsSchemaComputed\\(\\)", - "new": "\"tags_all\":$1tftags.TagsSchemaTrulyComputed()" - }, - { - "regExp": true, - "old": "names.AttrTagsAll:(\\s+)tftags.TagsSchemaComputed\\(\\)", - "new": "names.AttrTagsAll:$1tftags.TagsSchemaTrulyComputed()" - }, { "regExp": true, "old": "PrefixedUniqueId\\(\"tf",