Skip to content

Commit d078f43

Browse files
committed
resolve merge conflicts
2 parents df5e69f + da7960f commit d078f43

File tree

103 files changed

+4940
-362
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

103 files changed

+4940
-362
lines changed

.changelog/37286.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:new-data-source
2+
aws_rds_global_cluster
3+
```

.changelog/42829.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:bug
2+
resource/aws_lambda_function: Reset non-API attributes (`source_code_hash`, `s3_bucket`, `s3_key`, `s3_object_version` and `filename`) to their previous values when an update operation fails
3+
```

.changelog/44302.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:new-resource
2+
aws_bedrockagentcore_api_key_credential_provider
3+
```

.changelog/44303.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:new-resource
2+
aws_bedrockagentcore_browser
3+
```

.changelog/44542.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:bug
2+
resource/aws_ec2_transit_gateway_route_table_propagation.test: Fix bug causing `inconsistent final plan` errors
3+
```

.changelog/44604.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
```release-note:enhancement
2+
resource/aws_launch_template: Update EBS `throughput` maximum validation from 1000 to 2000 MiB/s for gp3 volumes
3+
```
4+
```release-note:enhancement
5+
resource/aws_imagebuilder_container_recipe: Update EBS `throughput` maximum validation from 1000 to 2000 MiB/s for gp3 volumes
6+
```
7+
```release-note:enhancement
8+
resource/aws_imagebuilder_image_recipe: Update EBS `throughput` maximum validation from 1000 to 2000 MiB/s for gp3 volumes
9+
```

.changelog/44609.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:enhancement
2+
resource/aws_vpc: Adds List support
3+
```

.changelog/44622.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:new-data-source
2+
aws_vpn_connection
3+
```

.changelog/44638.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
```release-note:enhancement
2+
resource/aws_quicksight_account_subscription: Add `admin_pro_group`, `author_pro_group`, and `reader_pro_group` arguments
3+
```
4+
5+
```release-note:note
6+
resource/aws_quicksight_account_subscription: Because we cannot easily test all this functionality, it is best effort and we ask for community help in testing
7+
```

.ci/semgrep/tflog/tflog.go

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
package main
2+
3+
import (
4+
"context"
5+
6+
"github.com/hashicorp/terraform-plugin-log/tflog"
7+
)
8+
9+
func noAssignment() {
10+
ctx := context.Background()
11+
12+
// ruleid: setfield-without-assign
13+
tflog.SetField(ctx, "field", "value")
14+
}
15+
16+
func assigned() {
17+
ctx := context.Background()
18+
19+
// ok: setfield-without-assign
20+
ctx = tflog.SetField(ctx, "field", "value")
21+
}
22+
23+
func returnedContext() context.Context {
24+
ctx := context.Background()
25+
26+
// ok: setfield-without-assign
27+
return tflog.SetField(ctx, "field", "value")
28+
}
29+
30+
func declareAndAssign_SameName() {
31+
ctx := context.Background()
32+
33+
for i := 0; i < 1; i++ {
34+
// ok: setfield-without-assign
35+
ctx := tflog.SetField(ctx, "field", "value")
36+
}
37+
}
38+
39+
func declareAndAssign_Rename() {
40+
outerCtx := context.Background()
41+
42+
for i := 0; i < 1; i++ {
43+
// ok: setfield-without-assign
44+
innerCtx := tflog.SetField(outerCtx, "field", "value")
45+
}
46+
}

0 commit comments

Comments
 (0)