Skip to content

Commit fc4b7e6

Browse files
authored
Update go depenedencies (#360)
1 parent a7d50e3 commit fc4b7e6

File tree

10 files changed

+89
-74
lines changed

10 files changed

+89
-74
lines changed

docs/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
# generated by https://github.com/hashicorp/terraform-plugin-docs
33
page_title: "temporalcloud Provider"
4-
subcategory: ""
54
description: |-
65
Use the temporalcloud provider to interact with resources supported by Temporal Cloud https://temporal.io/cloud.
76
Use the navigation to the left to learn about the available resources supported by this provider.

docs/resources/metrics_endpoint.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,8 @@ Optional:
113113

114114
Import is supported using the following syntax:
115115

116+
The [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import) can be used, for example:
117+
116118
```shell
117119
terraform import temporalcloud_metrics_endpoint.terraform terraform.account-11111-metrics
118120
```

docs/resources/namespace.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,8 @@ Read-Only:
220220

221221
Import is supported using the following syntax:
222222

223+
The [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import) can be used, for example:
224+
223225
```shell
224226
# Namespace can be imported to incorporate existing Namespaces into your Terraform pipeline.
225227
# To import a Namespace, you need

docs/resources/namespace_search_attribute.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@ resource "temporalcloud_namespace_search_attribute" "custom_search_attribute3" {
6868

6969
Import is supported using the following syntax:
7070

71+
The [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import) can be used, for example:
72+
7173
```shell
7274
# Search Attributes can be imported to incorporate existing Namespace Search Attributes into your Terraform pipeline.
7375
# To import a Search Attribute, you need

docs/resources/namespace_tags.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@ Optional:
7676

7777
Import is supported using the following syntax:
7878

79+
The [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import) can be used, for example:
80+
7981
```shell
8082
# Namespace Tags can be imported to incorporate existing Namespace Tags into your Terraform pipeline.
8183
# To import Namespace Tags, you need:

docs/resources/nexus_endpoint.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,8 @@ Optional:
116116

117117
Import is supported using the following syntax:
118118

119+
The [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import) can be used, for example:
120+
119121
```shell
120122
# Nexus Endpoints can be imported to incorporate existing Nexus Endpoints into your Terraform pipeline.
121123
# To import a Nexus Endpoint, you need

docs/resources/service_account.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@ Optional:
8989

9090
Import is supported using the following syntax:
9191

92+
The [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import) can be used, for example:
93+
9294
```shell
9395
# Service Accounts can be imported to incorporate existing Service Accounts into your Terraform pipeline.
9496
# To import a Service Account, you need

docs/resources/user.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,8 @@ Optional:
8888

8989
Import is supported using the following syntax:
9090

91+
The [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import) can be used, for example:
92+
9193
```shell
9294
# Users can be imported to incorporate existing Users into your Terraform pipeline.
9395
# To import a User, you need

go.mod

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
module github.com/temporalio/terraform-provider-temporalcloud
22

3-
go 1.23.0
3+
go 1.24
44

55
toolchain go1.24.1
66

77
require (
88
github.com/google/uuid v1.6.0
9-
github.com/hashicorp/terraform-plugin-docs v0.21.0
10-
github.com/hashicorp/terraform-plugin-framework v1.15.0
9+
github.com/hashicorp/terraform-plugin-docs v0.22.0
10+
github.com/hashicorp/terraform-plugin-framework v1.15.1
1111
github.com/hashicorp/terraform-plugin-framework-timeouts v0.5.0
1212
github.com/hashicorp/terraform-plugin-framework-validators v0.18.0
1313
github.com/hashicorp/terraform-plugin-go v0.28.0
1414
github.com/hashicorp/terraform-plugin-log v0.9.0
15-
github.com/hashicorp/terraform-plugin-testing v1.13.1
15+
github.com/hashicorp/terraform-plugin-testing v1.13.3
1616
github.com/jpillora/maplock v0.0.0-20160420012925-5c725ac6e22a
17-
go.temporal.io/api v1.50.0
17+
go.temporal.io/api v1.52.0
1818
go.temporal.io/cloud-sdk v0.5.0
1919
go.temporal.io/sdk v1.35.0
20-
google.golang.org/grpc v1.73.0
21-
google.golang.org/protobuf v1.36.6
20+
google.golang.org/grpc v1.75.0
21+
google.golang.org/protobuf v1.36.8
2222
)
2323

2424
require (
@@ -33,21 +33,21 @@ require (
3333
github.com/armon/go-radix v1.0.0 // indirect
3434
github.com/bgentry/speakeasy v0.1.0 // indirect
3535
github.com/bmatcuk/doublestar/v4 v4.8.1 // indirect
36-
github.com/cloudflare/circl v1.6.0 // indirect
36+
github.com/cloudflare/circl v1.6.1 // indirect
3737
github.com/fatih/color v1.18.0 // indirect
3838
github.com/gogo/protobuf v1.3.2 // indirect
3939
github.com/golang/protobuf v1.5.4 // indirect
4040
github.com/google/go-cmp v0.7.0 // indirect
4141
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.3.2 // indirect
42-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.1 // indirect
42+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.2 // indirect
4343
github.com/hashicorp/cli v1.1.7 // indirect
4444
github.com/hashicorp/errwrap v1.1.0 // indirect
4545
github.com/hashicorp/go-checkpoint v0.5.0 // indirect
4646
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
4747
github.com/hashicorp/go-cty v1.5.0 // indirect
4848
github.com/hashicorp/go-hclog v1.6.3 // indirect
4949
github.com/hashicorp/go-multierror v1.1.1 // indirect
50-
github.com/hashicorp/go-plugin v1.6.3 // indirect
50+
github.com/hashicorp/go-plugin v1.7.0 // indirect
5151
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
5252
github.com/hashicorp/go-uuid v1.0.3 // indirect
5353
github.com/hashicorp/go-version v1.7.0 // indirect
@@ -79,19 +79,19 @@ require (
7979
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
8080
github.com/yuin/goldmark v1.7.7 // indirect
8181
github.com/yuin/goldmark-meta v1.1.0 // indirect
82-
github.com/zclconf/go-cty v1.16.2 // indirect
82+
github.com/zclconf/go-cty v1.16.3 // indirect
8383
go.abhg.dev/goldmark/frontmatter v0.2.0 // indirect
84-
golang.org/x/crypto v0.39.0 // indirect
84+
golang.org/x/crypto v0.41.0 // indirect
8585
golang.org/x/exp v0.0.0-20241009180824-f66d83c29e7c // indirect
86-
golang.org/x/mod v0.25.0 // indirect
87-
golang.org/x/net v0.41.0 // indirect
86+
golang.org/x/mod v0.26.0 // indirect
87+
golang.org/x/net v0.43.0 // indirect
8888
golang.org/x/sync v0.16.0 // indirect
89-
golang.org/x/sys v0.34.0 // indirect
90-
golang.org/x/text v0.27.0 // indirect
91-
golang.org/x/tools v0.34.0 // indirect
89+
golang.org/x/sys v0.35.0 // indirect
90+
golang.org/x/text v0.28.0 // indirect
91+
golang.org/x/tools v0.35.0 // indirect
9292
google.golang.org/appengine v1.6.8 // indirect
93-
google.golang.org/genproto/googleapis/api v0.0.0-20250707201910-8d1bb00bc6a7 // indirect
94-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250707201910-8d1bb00bc6a7 // indirect
93+
google.golang.org/genproto/googleapis/api v0.0.0-20250818200422-3122310a409c // indirect
94+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250818200422-3122310a409c // indirect
9595
gopkg.in/yaml.v2 v2.3.0 // indirect
9696
gopkg.in/yaml.v3 v3.0.1 // indirect
9797
)

0 commit comments

Comments
 (0)