Skip to content

Commit

Permalink
Upgrade terraform-provider-aws to v5.76.0 (#4794)
Browse files Browse the repository at this point in the history
This PR was generated via `$ upgrade-provider pulumi/pulumi-aws
--kind=provider --target-version=5.76.0`.

---

- Upgrading terraform-provider-aws from 5.75.1  to 5.76.0.
	Fixes #4778
  • Loading branch information
flostadler authored Nov 19, 2024
1 parent 9454304 commit 4fce773
Show file tree
Hide file tree
Showing 69 changed files with 4,911 additions and 1,474 deletions.
474 changes: 237 additions & 237 deletions examples/go.mod

Large diffs are not rendered by default.

948 changes: 474 additions & 474 deletions examples/go.sum

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions patches/0058-Fix-tags_all-Computed-for-PF-resources.patch
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ index 976dba4ac1..648f2b5003 100644
"use_dedicated_replication_server": schema.BoolAttribute{
Required: true,
diff --git a/internal/service/elasticache/reserved_cache_node.go b/internal/service/elasticache/reserved_cache_node.go
index 4aa7fceca6..4ba20a47a7 100644
index c2ed403da0..794d9302ca 100644
--- a/internal/service/elasticache/reserved_cache_node.go
+++ b/internal/service/elasticache/reserved_cache_node.go
@@ -111,7 +111,7 @@ func (r *resourceReservedCacheNode) Schema(ctx context.Context, request resource
@@ -113,7 +113,7 @@ func (r *resourceReservedCacheNode) Schema(ctx context.Context, request resource
Computed: true,
},
names.AttrTags: tftags.TagsAttribute(),
Expand Down
5 changes: 5 additions & 0 deletions provider/cmd/pulumi-resource-aws/bridge-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -161579,6 +161579,10 @@
"current": "aws:vpc/securityGroupIngressRule:SecurityGroupIngressRule",
"majorVersion": 6
},
"aws_vpc_security_group_vpc_association": {
"current": "aws:vpc/securityGroupVpcAssociation:SecurityGroupVpcAssociation",
"majorVersion": 6
},
"aws_vpclattice_access_log_subscription": {
"current": "aws:vpclattice/accessLogSubscription:AccessLogSubscription",
"majorVersion": 6
Expand Down Expand Up @@ -277198,6 +277202,7 @@
"aws:vpc/endpointServicePrivateDnsVerification:EndpointServicePrivateDnsVerification": 1,
"aws:vpc/securityGroupEgressRule:SecurityGroupEgressRule": 1,
"aws:vpc/securityGroupIngressRule:SecurityGroupIngressRule": 1,
"aws:vpc/securityGroupVpcAssociation:SecurityGroupVpcAssociation": 1,
"aws:vpclattice/accessLogSubscription:AccessLogSubscription": 0,
"aws:vpclattice/authPolicy:AuthPolicy": 0,
"aws:vpclattice/listener:Listener": 0,
Expand Down

Large diffs are not rendered by default.

123 changes: 117 additions & 6 deletions provider/cmd/pulumi-resource-aws/schema-minimal.json

Large diffs are not rendered by default.

123 changes: 117 additions & 6 deletions provider/cmd/pulumi-resource-aws/schema.json

Large diffs are not rendered by default.

474 changes: 237 additions & 237 deletions provider/go.mod

Large diffs are not rendered by default.

948 changes: 474 additions & 474 deletions provider/go.sum

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions provider/resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -5552,6 +5552,9 @@ compatibility shim in favor of the new "name" field.`)
"aws_vpc_security_group_ingress_rule": {
Tok: awsResource("Vpc", "SecurityGroupIngressRule"),
},
"aws_vpc_security_group_vpc_association": {
Tok: awsResource("Vpc", "SecurityGroupVpcAssociation"),
},
"aws_vpc_endpoint_private_dns": {
Tok: awsResource("Vpc", "EndpointPrivateDns"),
},
Expand Down Expand Up @@ -5908,4 +5911,9 @@ func setupComputedIDs(prov *tfbridge.ProviderInfo) {
) (resource.ID, error) {
return attrWithSeparator(state, "domainName"), nil
}
prov.Resources["aws_vpc_security_group_vpc_association"].ComputeID = func(
ctx context.Context, state resource.PropertyMap,
) (resource.ID, error) {
return attrWithSeparator(state, "id"), nil
}
}
Loading

0 comments on commit 4fce773

Please sign in to comment.