1
- module github.com/pulumi/pulumi-aws/examples/ v6
1
+ module github.com/pulumi/pulumi-aws/v6
2
2
3
3
go 1.23.3
4
4
5
+ // Disable experimental post-quantum key exchange mechanism X25519Kyber768Draft00
6
+ // This was causing errors with AWS Network Firewall
7
+ // https://github.com/pulumi/pulumi-aws/issues/4582
8
+ godebug tlskyber=0
9
+
5
10
require (
6
11
github.com/aws/aws-sdk-go v1.55.5
7
12
github.com/aws/aws-sdk-go-v2 v1.32.6
8
13
github.com/aws/aws-sdk-go-v2/config v1.28.6
9
14
github.com/aws/aws-sdk-go-v2/credentials v1.17.47
15
+ github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.21
10
16
github.com/aws/aws-sdk-go-v2/service/appconfig v1.36.1
17
+ github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2 v1.43.1
11
18
github.com/aws/aws-sdk-go-v2/service/iam v1.38.2
12
19
github.com/aws/aws-sdk-go-v2/service/resourcegroupstaggingapi v1.25.7
13
20
github.com/aws/aws-sdk-go-v2/service/s3 v1.71.0
21
+ github.com/hashicorp/aws-sdk-go-base/v2 v2.0.0-beta.59
22
+ github.com/hashicorp/terraform-plugin-sdk/v2 v2.35.0
23
+ github.com/hashicorp/terraform-provider-aws v1.60.1-0.20220923175450-ca71523cdc36
24
+ github.com/mitchellh/go-homedir v1.1.0
14
25
github.com/pulumi/providertest v0.1.3
15
- github.com/pulumi/pulumi-aws/provider/v6 v6.0.0-00010101000000-000000000000
16
26
github.com/pulumi/pulumi-terraform-bridge/v3 v3.98.0
17
27
github.com/pulumi/pulumi/pkg/v3 v3.143.0
18
28
github.com/pulumi/pulumi/sdk/v3 v3.143.0
19
29
github.com/stretchr/testify v1.9.0
30
+ pgregory.net/rapid v0.6.1
20
31
)
21
32
22
- // Replace to allow for correctly linking the aws provider.
33
+ // This replace is copied from upstream/go.mod, and should be maintained only as long as
34
+ // upstream maintains the same replace.
23
35
//
24
- // We use this for gRPC based testing.
36
+ // There is an equivalent replace in examples/go.mod. It should be updated/removed inline
37
+ // with this replace.
38
+ replace github.com/hashicorp/terraform-plugin-log => github.com/gdavison/terraform-plugin-log v0.0.0-20230928191232-6c653d8ef8fb
39
+
25
40
replace (
26
41
github.com/hashicorp/terraform-plugin-sdk/v2 => github.com/pulumi/terraform-plugin-sdk/v2 v2.0.0-20240520223432-0c0bf0d65f10
27
-
28
- github.com/hashicorp/terraform-provider-aws => ../upstream
29
- github.com/pulumi/pulumi-aws/provider/v6 => ../provider
42
+ github.com/hashicorp/terraform-provider-aws => ./upstream
43
+ github.com/hashicorp/vault => github.com/hashicorp/vault v1.2.0
30
44
)
31
45
32
- // This replace is copied from upstream/go.mod, and should be maintained only as long as upstream maintains the same replace.
33
- replace github.com/hashicorp/terraform-plugin-log => github.com/gdavison/terraform-plugin-log v0.0.0-20230928191232-6c653d8ef8fb
34
-
35
46
require (
36
47
cloud.google.com/go v0.112.1 // indirect
37
48
cloud.google.com/go/compute/metadata v0.5.0 // indirect
@@ -63,7 +74,6 @@ require (
63
74
github.com/armon/go-radix v1.0.0 // indirect
64
75
github.com/atotto/clipboard v0.1.4 // indirect
65
76
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.7 // indirect
66
- github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.21 // indirect
67
77
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.17.43 // indirect
68
78
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.25 // indirect
69
79
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.25 // indirect
@@ -161,7 +171,6 @@ require (
161
171
github.com/aws/aws-sdk-go-v2/service/elasticache v1.44.1 // indirect
162
172
github.com/aws/aws-sdk-go-v2/service/elasticbeanstalk v1.28.7 // indirect
163
173
github.com/aws/aws-sdk-go-v2/service/elasticloadbalancing v1.28.6 // indirect
164
- github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2 v1.43.1 // indirect
165
174
github.com/aws/aws-sdk-go-v2/service/elasticsearchservice v1.32.7 // indirect
166
175
github.com/aws/aws-sdk-go-v2/service/elastictranscoder v1.27.7 // indirect
167
176
github.com/aws/aws-sdk-go-v2/service/emr v1.47.1 // indirect
@@ -364,7 +373,6 @@ require (
364
373
github.com/gorilla/mux v1.8.0 // indirect
365
374
github.com/grpc-ecosystem/grpc-opentracing v0.0.0-20180507213350-8e809c8a8645 // indirect
366
375
github.com/hashicorp/aws-cloudformation-resource-schema-sdk-go v0.23.0 // indirect
367
- github.com/hashicorp/aws-sdk-go-base/v2 v2.0.0-beta.59 // indirect
368
376
github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2 v2.0.0-beta.60 // indirect
369
377
github.com/hashicorp/awspolicyequivalence v1.6.0 // indirect
370
378
github.com/hashicorp/errwrap v1.1.0 // indirect
@@ -398,9 +406,7 @@ require (
398
406
github.com/hashicorp/terraform-plugin-go v0.25.0 // indirect
399
407
github.com/hashicorp/terraform-plugin-log v0.9.0 // indirect
400
408
github.com/hashicorp/terraform-plugin-mux v0.17.0 // indirect
401
- github.com/hashicorp/terraform-plugin-sdk/v2 v2.35.0 // indirect
402
409
github.com/hashicorp/terraform-plugin-testing v1.11.0 // indirect
403
- github.com/hashicorp/terraform-provider-aws v1.60.1-0.20220923175450-ca71523cdc36 // indirect
404
410
github.com/hashicorp/terraform-registry-address v0.2.3 // indirect
405
411
github.com/hashicorp/terraform-svchost v0.1.1 // indirect
406
412
github.com/hashicorp/vault/api v1.12.0 // indirect
@@ -422,7 +428,6 @@ require (
422
428
github.com/mattn/go-runewidth v0.0.15 // indirect
423
429
github.com/mitchellh/cli v1.1.5 // indirect
424
430
github.com/mitchellh/copystructure v1.2.0 // indirect
425
- github.com/mitchellh/go-homedir v1.1.0 // indirect
426
431
github.com/mitchellh/go-ps v1.0.0 // indirect
427
432
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
428
433
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
0 commit comments