Skip to content

Commit 7da7413

Browse files
authored
Merge branch 'master' into feat/add_key_managers_resource
2 parents 4ef1493 + 33090e3 commit 7da7413

File tree

56 files changed

+28051
-15955
lines changed

Some content is hidden

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

56 files changed

+28051
-15955
lines changed

docs/data-sources/vpcs.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,5 @@ In addition to all arguments above, the following attributes are exported:
4242
- `updated_at` - Date and time of VPC's last update (RFC 3339 format).
4343
- `organization_id` - The Organization ID the VPC is associated with.
4444
- `project_id` - The ID of the Project the VPC is associated with.
45+
- `enable_routing` - Defines whether routing between Private Networks in the VPC is enabled.
46+
- `enable_custom_routes_propagation` - Defines whether the VPC advertises custom routes between its Private Networks.

docs/resources/apple_silicon_server.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ The following arguments are supported:
3838

3939
- `commitment_type` (Optional, Default: duration_24h): Activate commitment for this server
4040

41+
- `public_bandwidth` (Optional) Configure the available public bandwidth for your server in bits per second. This option may not be available for all offers.
42+
4143
## Attributes Reference
4244

4345
In addition to all arguments above, the following attributes are exported:

docs/resources/k8s_pool.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,10 @@ The following arguments are supported:
9696

9797
~> **Important:** Updates to this field will recreate a new resource.
9898

99+
- `security_group_id` - The ID of the security group
100+
101+
~> **Important:** Updates to this field will recreate a new resource.
102+
99103
## Attributes Reference
100104

101105
In addition to all arguments above, the following attributes are exported:

docs/resources/vpc.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ The following arguments are supported:
3636
- `name` - (Optional) The name for the VPC. If not provided it will be randomly generated.
3737
- `tags` - (Optional) The tags to associate with the VPC.
3838
- `enable_routing` - (Optional) Enable routing between Private Networks in the VPC. Note that you will not be able to deactivate it afterwards.
39+
- `enable_custom_routes_propagation` - (`true` for newly created VPCs) Defines whether the VPC advertises custom routes between its Private Networks. Note that you will not be able to deactivate it afterwards.
3940
- `region` - (Defaults to [provider](../index.md#region) `region`) The [region](../guides/regions_and_zones.md#regions) of the VPC.
4041
- `project_id` - (Defaults to [provider](../index.md#project_id) `project_id`) The ID of the Project the VPC is associated with.
4142

docs/resources/vpc_private_network.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ The following arguments are supported:
5252
- `region` - (Defaults to [provider](../index.md#region) `region`) The [region](../guides/regions_and_zones.md#regions) of the Private Network.
5353
- `vpc_id` - (Optional) The VPC in which to create the Private Network.
5454
- `is_regional` - (Deprecated) Private Networks are now all necessarily regional.
55+
- `enable_default_route_propagation` - (Optional) Defines whether default v4 and v6 routes are propagated for this Private Network.
5556
- `zone` - (Deprecated) Use `region` instead.
5657

5758
## Attributes Reference

go.mod

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,23 @@ go 1.24.0
44

55
require (
66
github.com/alexedwards/argon2id v1.0.0
7-
github.com/aws/aws-sdk-go-v2 v1.36.3
8-
github.com/aws/aws-sdk-go-v2/config v1.29.14
9-
github.com/aws/aws-sdk-go-v2/credentials v1.17.67
10-
github.com/aws/aws-sdk-go-v2/service/s3 v1.80.0
7+
github.com/aws/aws-sdk-go-v2 v1.36.5
8+
github.com/aws/aws-sdk-go-v2/config v1.29.17
9+
github.com/aws/aws-sdk-go-v2/credentials v1.17.70
10+
github.com/aws/aws-sdk-go-v2/service/s3 v1.82.0
1111
github.com/aws/aws-sdk-go-v2/service/sns v1.34.4
12-
github.com/aws/aws-sdk-go-v2/service/sqs v1.38.5
13-
github.com/aws/smithy-go v1.22.3
12+
github.com/aws/aws-sdk-go-v2/service/sqs v1.38.6
13+
github.com/aws/smithy-go v1.22.4
1414
github.com/docker/docker v28.2.2+incompatible
1515
github.com/dustin/go-humanize v1.0.1
1616
github.com/google/go-cmp v0.7.0
1717
github.com/google/uuid v1.6.0
1818
github.com/hashicorp/aws-sdk-go-base v1.1.0
19-
github.com/hashicorp/aws-sdk-go-base/v2 v2.0.0-beta.64
19+
github.com/hashicorp/aws-sdk-go-base/v2 v2.0.0-beta.65
2020
github.com/hashicorp/awspolicyequivalence v1.7.0
2121
github.com/hashicorp/go-cty v1.5.0
2222
github.com/hashicorp/go-multierror v1.1.1
23-
github.com/hashicorp/go-retryablehttp v0.7.7
23+
github.com/hashicorp/go-retryablehttp v0.7.8
2424
github.com/hashicorp/terraform-plugin-go v0.28.0
2525
github.com/hashicorp/terraform-plugin-log v0.9.0
2626
github.com/hashicorp/terraform-plugin-mux v0.20.0
@@ -30,7 +30,7 @@ require (
3030
github.com/robfig/cron/v3 v3.0.1
3131
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.33.0.20250625143510-4421125d41b9
3232
github.com/stretchr/testify v1.10.0
33-
golang.org/x/crypto v0.38.0
33+
golang.org/x/crypto v0.39.0
3434
gopkg.in/dnaeon/go-vcr.v3 v3.2.0
3535
)
3636

@@ -46,19 +46,19 @@ require (
4646
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
4747
github.com/armon/go-radix v1.0.0 // indirect
4848
github.com/aws/aws-sdk-go v1.55.5 // indirect
49-
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.10 // indirect
50-
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.30 // indirect
51-
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.34 // indirect
52-
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.34 // indirect
49+
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.11 // indirect
50+
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.32 // indirect
51+
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.36 // indirect
52+
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.36 // indirect
5353
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.3 // indirect
54-
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.34 // indirect
55-
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.3 // indirect
56-
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.7.2 // indirect
57-
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.15 // indirect
58-
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.15 // indirect
59-
github.com/aws/aws-sdk-go-v2/service/sso v1.25.3 // indirect
60-
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.30.1 // indirect
61-
github.com/aws/aws-sdk-go-v2/service/sts v1.33.19 // indirect
54+
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.36 // indirect
55+
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.4 // indirect
56+
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.7.4 // indirect
57+
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.17 // indirect
58+
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.17 // indirect
59+
github.com/aws/aws-sdk-go-v2/service/sso v1.25.5 // indirect
60+
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.30.3 // indirect
61+
github.com/aws/aws-sdk-go-v2/service/sts v1.34.0 // indirect
6262
github.com/bflad/gopaniccheck v0.1.0 // indirect
6363
github.com/bflad/tfproviderdocs v0.12.1 // indirect
6464
github.com/bflad/tfproviderlint v0.31.0 // indirect
@@ -149,13 +149,13 @@ require (
149149
go.abhg.dev/goldmark/frontmatter v0.2.0 // indirect
150150
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
151151
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.47.0 // indirect
152-
go.opentelemetry.io/otel v1.35.0 // indirect
152+
go.opentelemetry.io/otel v1.36.0 // indirect
153153
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.22.0 // indirect
154-
go.opentelemetry.io/otel/metric v1.35.0 // indirect
155-
go.opentelemetry.io/otel/trace v1.35.0 // indirect
154+
go.opentelemetry.io/otel/metric v1.36.0 // indirect
155+
go.opentelemetry.io/otel/trace v1.36.0 // indirect
156156
golang.org/x/exp v0.0.0-20230626212559-97b1e661b5df // indirect
157157
golang.org/x/mod v0.25.0 // indirect
158-
golang.org/x/net v0.40.0 // indirect
158+
golang.org/x/net v0.41.0 // indirect
159159
golang.org/x/sync v0.15.0 // indirect
160160
golang.org/x/sys v0.33.0 // indirect
161161
golang.org/x/text v0.26.0 // indirect

0 commit comments

Comments
 (0)