Skip to content

Commit 7b77302

Browse files
pulumi-botjustinvpcorymhall
authored
Automated Pulumi/Pulumi upgrade (#3187)
Co-authored-by: Justin Van Patten <[email protected]> Co-authored-by: corymhall <[email protected]>
1 parent 5b9364a commit 7b77302

File tree

6 files changed

+26
-38
lines changed

6 files changed

+26
-38
lines changed

dynamic/testdata/TestSchemaGenerationFullDocs/fortinetdev/fortimanager-1.13.0.golden

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129102,7 +129102,7 @@
129102129102
}
129103129103
},
129104129104
"fortimanager:index/objectRouterRoutemap:ObjectRouterRoutemap": {
129105-
"description": "Configure route maps.\n\n\u003e The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.\n\u003e- `rule`: `fortimanager.ObjectRouterRoutemapRule`\n\n\n\n## Example Usage\n\n\u003c!--Start PulumiCodeChooser --\u003e\n```yaml\nresources:\n trname:\n type: fortimanager:ObjectRouterRoutemap\n properties:\n comment: This is a Terraform example\n rules:\n - action: deny\n id: 1\n matchCommunity: Priority_1\n matchExtcommunityExact: enable\n```\n\u003c!--End PulumiCodeChooser --\u003e\n\n## Import\n\nObjectRouter RouteMap can be imported using any of these accepted formats:\n\n$ export \"FORTIMANAGER_IMPORT_TABLE\"=\"true\"\n\n```sh\n$ pulumi import fortimanager:index/objectRouterRoutemap:ObjectRouterRoutemap labelname {{name}}\n```\n\n$ unset \"FORTIMANAGER_IMPORT_TABLE\"\n\n-\u003e **Hint:** The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.\n\n",
129105+
"description": "Configure route maps.\n\n\u003e The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.\n\u003e- `rule`: `fortimanager.ObjectRouterRoutemapRule`\n\n\n\n## Example Usage\n\n\u003c!--Start PulumiCodeChooser --\u003e\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as fortimanager from \"@pulumi/fortimanager\";\n\nconst trname = new fortimanager.ObjectRouterRoutemap(\"trname\", {\n comment: \"This is a Terraform example\",\n rules: [{\n action: \"deny\",\n id: 1,\n matchCommunity: \"Priority_1\",\n matchExtcommunityExact: \"enable\",\n }],\n});\n```\n```python\nimport pulumi\nimport pulumi_fortimanager as fortimanager\n\ntrname = fortimanager.ObjectRouterRoutemap(\"trname\",\n comment=\"This is a Terraform example\",\n rules=[{\n \"action\": \"deny\",\n \"id\": 1,\n \"match_community\": \"Priority_1\",\n \"match_extcommunity_exact\": \"enable\",\n }])\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Fortimanager = Pulumi.Fortimanager;\n\nreturn await Deployment.RunAsync(() =\u003e \n{\n var trname = new Fortimanager.ObjectRouterRoutemap(\"trname\", new()\n {\n Comment = \"This is a Terraform example\",\n Rules = new[]\n {\n new Fortimanager.Inputs.ObjectRouterRoutemapRuleArgs\n {\n Action = \"deny\",\n Id = 1,\n MatchCommunity = \"Priority_1\",\n MatchExtcommunityExact = \"enable\",\n },\n },\n });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t_, err := fortimanager.NewObjectRouterRoutemap(ctx, \"trname\", \u0026fortimanager.ObjectRouterRoutemapArgs{\n\t\t\tComment: \"This is a Terraform example\",\n\t\t\tRules: fortimanager.ObjectRouterRoutemapRuleTypeArray{\n\t\t\t\t\u0026fortimanager.ObjectRouterRoutemapRuleTypeArgs{\n\t\t\t\t\tAction: pulumi.String(\"deny\"),\n\t\t\t\t\tId: pulumi.Float64(1),\n\t\t\t\t\tMatchCommunity: pulumi.String(\"Priority_1\"),\n\t\t\t\t\tMatchExtcommunityExact: pulumi.String(\"enable\"),\n\t\t\t\t},\n\t\t\t},\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.fortimanager.ObjectRouterRoutemap;\nimport com.pulumi.fortimanager.ObjectRouterRoutemapArgs;\nimport com.pulumi.fortimanager.inputs.ObjectRouterRoutemapRuleArgs;\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 trname = new ObjectRouterRoutemap(\"trname\", ObjectRouterRoutemapArgs.builder()\n .comment(\"This is a Terraform example\")\n .rules(ObjectRouterRoutemapRuleArgs.builder()\n .action(\"deny\")\n .id(1.0)\n .matchCommunity(\"Priority_1\")\n .matchExtcommunityExact(\"enable\")\n .build())\n .build());\n\n }\n}\n```\n```yaml\nresources:\n trname:\n type: fortimanager:ObjectRouterRoutemap\n properties:\n comment: This is a Terraform example\n rules:\n - action: deny\n id: 1\n matchCommunity: Priority_1\n matchExtcommunityExact: enable\n```\n\u003c!--End PulumiCodeChooser --\u003e\n\n## Import\n\nObjectRouter RouteMap can be imported using any of these accepted formats:\n\n$ export \"FORTIMANAGER_IMPORT_TABLE\"=\"true\"\n\n```sh\n$ pulumi import fortimanager:index/objectRouterRoutemap:ObjectRouterRoutemap labelname {{name}}\n```\n\n$ unset \"FORTIMANAGER_IMPORT_TABLE\"\n\n-\u003e **Hint:** The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.\n\n",
129106129106
"properties": {
129107129107
"adom": {
129108129108
"type": "string",
@@ -139087,7 +139087,7 @@
139087139087
}
139088139088
},
139089139089
"fortimanager:index/objectSystemExternalresource:ObjectSystemExternalresource": {
139090-
"description": "Configure external resource.\n\n## Example Usage\n\n\u003c!--Start PulumiCodeChooser --\u003e\n```yaml\nresources:\n trname:\n type: fortimanager:ObjectSystemExternalresource\n properties:\n category: 192\n comment: This is a Terraform example\n```\n\u003c!--End PulumiCodeChooser --\u003e\n\n## Import\n\nObjectSystem ExternalResource can be imported using any of these accepted formats:\n\n$ export \"FORTIMANAGER_IMPORT_TABLE\"=\"true\"\n\n```sh\n$ pulumi import fortimanager:index/objectSystemExternalresource:ObjectSystemExternalresource labelname {{name}}\n```\n\n$ unset \"FORTIMANAGER_IMPORT_TABLE\"\n\n-\u003e **Hint:** The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.\n\n",
139090+
"description": "Configure external resource.\n\n## Example Usage\n\n\u003c!--Start PulumiCodeChooser --\u003e\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as fortimanager from \"@pulumi/fortimanager\";\n\nconst trname = new fortimanager.ObjectSystemExternalresource(\"trname\", {\n category: 192,\n comment: \"This is a Terraform example\",\n});\n```\n```python\nimport pulumi\nimport pulumi_fortimanager as fortimanager\n\ntrname = fortimanager.ObjectSystemExternalresource(\"trname\",\n category=192,\n comment=\"This is a Terraform example\")\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Fortimanager = Pulumi.Fortimanager;\n\nreturn await Deployment.RunAsync(() =\u003e \n{\n var trname = new Fortimanager.ObjectSystemExternalresource(\"trname\", new()\n {\n Category = 192,\n Comment = \"This is a Terraform example\",\n });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t_, err := fortimanager.NewObjectSystemExternalresource(ctx, \"trname\", \u0026fortimanager.ObjectSystemExternalresourceArgs{\n\t\t\tCategory: pulumi.Float64(192),\n\t\t\tComment: \"This is a Terraform example\",\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.fortimanager.ObjectSystemExternalresource;\nimport com.pulumi.fortimanager.ObjectSystemExternalresourceArgs;\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 trname = new ObjectSystemExternalresource(\"trname\", ObjectSystemExternalresourceArgs.builder()\n .category(192.0)\n .comment(\"This is a Terraform example\")\n .build());\n\n }\n}\n```\n```yaml\nresources:\n trname:\n type: fortimanager:ObjectSystemExternalresource\n properties:\n category: 192\n comment: This is a Terraform example\n```\n\u003c!--End PulumiCodeChooser --\u003e\n\n## Import\n\nObjectSystem ExternalResource can be imported using any of these accepted formats:\n\n$ export \"FORTIMANAGER_IMPORT_TABLE\"=\"true\"\n\n```sh\n$ pulumi import fortimanager:index/objectSystemExternalresource:ObjectSystemExternalresource labelname {{name}}\n```\n\n$ unset \"FORTIMANAGER_IMPORT_TABLE\"\n\n-\u003e **Hint:** The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.\n\n",
139091139091
"properties": {
139092139092
"adom": {
139093139093
"type": "string",

go.mod

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ require (
5959
github.com/zclconf/go-cty v1.16.2
6060
golang.org/x/crypto v0.39.0
6161
golang.org/x/mod v0.25.0
62-
golang.org/x/net v0.40.0
62+
golang.org/x/net v0.41.0
6363
golang.org/x/text v0.26.0
6464
google.golang.org/grpc v1.72.1
6565
google.golang.org/protobuf v1.36.6
@@ -110,6 +110,7 @@ require (
110110
github.com/nightlyone/lockfile v1.0.0 // indirect
111111
github.com/nxadm/tail v1.4.11 // indirect
112112
github.com/pgavlin/fx v0.1.6 // indirect
113+
github.com/pgavlin/fx/v2 v2.0.10 // indirect
113114
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
114115
github.com/pulumi/appdash v0.0.0-20231130102222-75f619a67231 // indirect
115116
github.com/pulumi/esc v0.17.0 // indirect
@@ -123,7 +124,7 @@ require (
123124
go.opentelemetry.io/otel/metric v1.36.0 // indirect
124125
go.opentelemetry.io/otel/trace v1.36.0 // indirect
125126
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
126-
golang.org/x/tools v0.33.0 // indirect
127+
golang.org/x/tools v0.34.0 // indirect
127128
google.golang.org/genproto/googleapis/api v0.0.0-20250519155744-55703ea1f237 // indirect
128129
google.golang.org/genproto/googleapis/rpc v0.0.0-20250519155744-55703ea1f237 // indirect
129130
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
@@ -221,8 +222,8 @@ require (
221222
github.com/pkg/term v1.1.0 // indirect
222223
github.com/pmezard/go-difflib v1.0.0 // indirect
223224
github.com/posener/complete v1.2.3 // indirect
224-
github.com/pulumi/pulumi/pkg/v3 v3.190.0
225-
github.com/pulumi/pulumi/sdk/v3 v3.190.0
225+
github.com/pulumi/pulumi/pkg/v3 v3.195.0
226+
github.com/pulumi/pulumi/sdk/v3 v3.195.0
226227
github.com/rivo/uniseg v0.4.4 // indirect
227228
github.com/rogpeppe/go-internal v1.14.1 // indirect
228229
github.com/ryanuber/go-glob v1.0.0 // indirect

go.sum

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2183,8 +2183,8 @@ github.com/opentracing/opentracing-go v1.2.0/go.mod h1:GxEUsuufX4nBwe+T+Wl9TAgYr
21832183
github.com/orisano/pixelmatch v0.0.0-20220722002657-fb0b55479cde/go.mod h1:nZgzbfBr3hhjoZnS66nKrHmduYNpc34ny7RK4z5/HM0=
21842184
github.com/pgavlin/fx v0.1.6 h1:r9jEg69DhNoCd3Xh0+5mIbdbS3PqWrVWujkY76MFRTU=
21852185
github.com/pgavlin/fx v0.1.6/go.mod h1:KWZJ6fqBBSh8GxHYqwYCf3rYE7Gp2p0N8tJp8xv9u9M=
2186-
github.com/pgavlin/fx/v2 v2.0.3 h1:ZBVklTFjxcWvBVPE+ti5qwnmTIQ0Gq6nuj3J5RKDtKk=
2187-
github.com/pgavlin/fx/v2 v2.0.3/go.mod h1:Cvnwqq0BopdHUJ7CU50h1XPeKrF4ZwdFj1nJLXbAjCE=
2186+
github.com/pgavlin/fx/v2 v2.0.10 h1:ggyQ6pB+lEQEbEae48Wh/X221eLOamMD7i01ISe88u4=
2187+
github.com/pgavlin/fx/v2 v2.0.10/go.mod h1:M/nF/ooAOy+NUBooYYXl2REARzJ/giPJxfMs8fINfKc=
21882188
github.com/pgavlin/goldmark v1.1.33-0.20200616210433-b5eb04559386 h1:LoCV5cscNVWyK5ChN/uCoIFJz8jZD63VQiGJIRgr6uo=
21892189
github.com/pgavlin/goldmark v1.1.33-0.20200616210433-b5eb04559386/go.mod h1:MRxHTJrf9FhdfNQ8Hdeh9gmHevC9RJE/fu8M3JIGjoE=
21902190
github.com/phpdave11/gofpdf v1.4.2/go.mod h1:zpO6xFn9yxo3YLyMvW8HcKWVdbNqgIfOOp2dXMnm1mY=
@@ -2231,10 +2231,10 @@ github.com/pulumi/pulumi-java/pkg v1.12.0 h1:T7yFnFr0bgqy6huVUANMyUeGO1/Y3r2CJJ6
22312231
github.com/pulumi/pulumi-java/pkg v1.12.0/go.mod h1:g8QQjEgB5wTsZptyf1vbIcI/pgYEGJObnihAEgymkAo=
22322232
github.com/pulumi/pulumi-yaml v1.19.1 h1:Y92eTQv07p5RbbNj6s/54+ibdPgvndLJ2Lb1IjYffng=
22332233
github.com/pulumi/pulumi-yaml v1.19.1/go.mod h1:n1JTtfUXR1IWVJ86HvMvQglK5mrDeDduxsLifGW1WIA=
2234-
github.com/pulumi/pulumi/pkg/v3 v3.190.0 h1:CJi5NW2ckBgB32m60rhWH8VXFxIhL2cyXy+eAGBqoww=
2235-
github.com/pulumi/pulumi/pkg/v3 v3.190.0/go.mod h1:xRjPaEpEaw20EopBMT4hOvyu4qIGZTpdXw9pgNKid6I=
2236-
github.com/pulumi/pulumi/sdk/v3 v3.190.0 h1:sRY8xsQLqxJGTPpd0lrVienoEU+4ZKntisV32+82Czc=
2237-
github.com/pulumi/pulumi/sdk/v3 v3.190.0/go.mod h1:aV0+c5xpSYccWKmOjTZS9liYCqh7+peu3cQgSXu7CJw=
2234+
github.com/pulumi/pulumi/pkg/v3 v3.195.0 h1:qDXOV/e55VP2DVjPNyMXzceFJ9nRHf6BvqZHNMzC8Yk=
2235+
github.com/pulumi/pulumi/pkg/v3 v3.195.0/go.mod h1:5C+YN4X00+Zpmu/H3UoQaHhcgRuWGuwjptMZFGM8onw=
2236+
github.com/pulumi/pulumi/sdk/v3 v3.195.0 h1:n8GjNznPV62dNXfxsy2u0Jxn36Z7MG8Lb2KaSPLyobY=
2237+
github.com/pulumi/pulumi/sdk/v3 v3.195.0/go.mod h1:aV0+c5xpSYccWKmOjTZS9liYCqh7+peu3cQgSXu7CJw=
22382238
github.com/pulumi/schema-tools v0.1.2 h1:Fd9xvUjgck4NA+7/jSk7InqCUT4Kj940+EcnbQKpfZo=
22392239
github.com/pulumi/schema-tools v0.1.2/go.mod h1:62lgj52Tzq11eqWTIaKd+EVyYAu5dEcDJxMhTjvMO/k=
22402240
github.com/pulumi/terraform-diff-reader v0.0.2 h1:kTE4nEXU3/SYXESvAIem+wyHMI3abqkI3OhJ0G04LLI=
@@ -2674,8 +2674,8 @@ golang.org/x/net v0.34.0/go.mod h1:di0qlW3YNM5oh6GqDGQr92MyTozJPmybPK4Ev/Gm31k=
26742674
golang.org/x/net v0.35.0/go.mod h1:EglIi67kWsHKlRzzVMUD93VMSWGFOMSZgxFjparz1Qk=
26752675
golang.org/x/net v0.36.0/go.mod h1:bFmbeoIPfrw4sMHNhb4J9f6+tPziuGjq7Jk/38fxi1I=
26762676
golang.org/x/net v0.39.0/go.mod h1:X7NRbYVEA+ewNkCNyJ513WmMdQ3BineSwVtN2zD/d+E=
2677-
golang.org/x/net v0.40.0 h1:79Xs7wF06Gbdcg4kdCCIQArK11Z1hr5POQ6+fIYHNuY=
2678-
golang.org/x/net v0.40.0/go.mod h1:y0hY0exeL2Pku80/zKK7tpntoX23cqL3Oa6njdgRtds=
2677+
golang.org/x/net v0.41.0 h1:vBTly1HeNPEn3wtREYfy4GZ/NECgw2Cnl+nK6Nz3uvw=
2678+
golang.org/x/net v0.41.0/go.mod h1:B/K4NNqkfmg07DQYrbwvSluqCJOOXwUjeb/5lOisjbA=
26792679
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
26802680
golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
26812681
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
@@ -3034,8 +3034,8 @@ golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d/go.mod h1:aiJjzUbINMkxb
30343034
golang.org/x/tools v0.22.0/go.mod h1:aCwcsjqvq7Yqt6TNyX7QMU2enbQ/Gt0bo6krSeEri+c=
30353035
golang.org/x/tools v0.23.0/go.mod h1:pnu6ufv6vQkll6szChhK3C3L/ruaIv5eBeztNG8wtsI=
30363036
golang.org/x/tools v0.26.0/go.mod h1:TPVVj70c7JJ3WCazhD8OdXcZg/og+b9+tH/KxylGwH0=
3037-
golang.org/x/tools v0.33.0 h1:4qz2S3zmRxbGIhDIAgjxvFutSvH5EfnsYrRBj0UI0bc=
3038-
golang.org/x/tools v0.33.0/go.mod h1:CIJMaWEY88juyUfo7UbgPqbC8rU2OqfAV1h2Qp0oMYI=
3037+
golang.org/x/tools v0.34.0 h1:qIpSLOxeCYGg9TrcJokLBG4KFA6d795g0xkBkiESGlo=
3038+
golang.org/x/tools v0.34.0/go.mod h1:pAP9OwEaY1CAW3HOmg3hLZC5Z0CCmzjAF2UQMSqNARg=
30393039
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
30403040
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
30413041
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=

pkg/tfgen/convert_test.go

Lines changed: 6 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -75,39 +75,26 @@ func TestConvert(t *testing.T) {
7575
default = {
7676
us-east-1 = 1
7777
}
78+
}
79+
resource "aws_vpc" "example" {
80+
cidr_block = "10.0.0.0/16"
7881
}`)
7982

8083
expectedCode := `
8184
import * as pulumi from "@pulumi/pulumi";
85+
import * as aws from "@pulumi/aws";
8286
8387
const config = new pulumi.Config();
8488
const regionNumber = config.getObject<{us-east-1?: number}>("regionNumber") || {
8589
"us-east-1": 1,
86-
};`
90+
};
91+
const example = new aws.ec2/vpc.Vpc("example", {cidrBlock: "10.0.0.0/16"});`
8792

8893
require.False(t, diags.All.HasErrors())
8994

9095
require.Equal(t,
9196
strings.TrimSpace(expectedCode),
9297
strings.TrimSpace(string(files["index.ts"])))
93-
94-
// The test extended with a random resource does
95-
// currently produce erroring diags about an unknown
96-
// resource (bad test setup), but is included here
97-
// since for some reason including the resource was
98-
// needed to reproduce non-nil `err` in the orignal
99-
// bug.
100-
_, _, err := checkErr(`
101-
variable "region_number" {
102-
default = {
103-
us-east-1 = 1
104-
}
105-
}
106-
107-
resource "aws_vpc" "example" {
108-
cidr_block = cidrsubnet("10.0.0.0/8", 4, 2)
109-
}`)
110-
require.Error(t, err)
11198
})
11299

113100
t.Run("regress no empty resource plugin found", func(t *testing.T) {

tools/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ require (
6666
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
6767
github.com/nightlyone/lockfile v1.0.0 // indirect
6868
github.com/pmezard/go-difflib v1.0.0 // indirect
69-
github.com/pulumi/pulumi/sdk/v3 v3.190.0
69+
github.com/pulumi/pulumi/sdk/v3 v3.195.0
7070
github.com/ulikunitz/xz v0.5.10 // indirect
7171
github.com/zclconf/go-cty v1.16.2 // indirect
7272
github.com/zclconf/go-cty-yaml v1.0.3 // indirect

tools/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -452,8 +452,8 @@ github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINE
452452
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
453453
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
454454
github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=
455-
github.com/pulumi/pulumi/sdk/v3 v3.190.0 h1:sRY8xsQLqxJGTPpd0lrVienoEU+4ZKntisV32+82Czc=
456-
github.com/pulumi/pulumi/sdk/v3 v3.190.0/go.mod h1:aV0+c5xpSYccWKmOjTZS9liYCqh7+peu3cQgSXu7CJw=
455+
github.com/pulumi/pulumi/sdk/v3 v3.195.0 h1:n8GjNznPV62dNXfxsy2u0Jxn36Z7MG8Lb2KaSPLyobY=
456+
github.com/pulumi/pulumi/sdk/v3 v3.195.0/go.mod h1:aV0+c5xpSYccWKmOjTZS9liYCqh7+peu3cQgSXu7CJw=
457457
github.com/pulumi/terraform v0.12.1-0.20230322133416-a268cd0892c9 h1:VHeasqoSdMgpxw8Rx46TybHixfnBlCk0i0JLDusNn4Y=
458458
github.com/pulumi/terraform v0.12.1-0.20230322133416-a268cd0892c9/go.mod h1:w029Faz4rGcWSr4gPHWjlzU7CdvbxwQNjgiYWBC0FzU=
459459
github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ=

0 commit comments

Comments
 (0)