Skip to content

Commit b9667d6

Browse files
authored
Merge branch 'main' into notification-configuration-migration
2 parents 875a58f + e5bbe45 commit b9667d6

27 files changed

+1257
-802
lines changed

.golangci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ linters:
1111
- noctx #https://github.com/sonatard/noctx
1212
- nilerr #https://github.com/gostaticanalysis/nilerr
1313
- nestif #https://github.com/nakabonne/nestif
14-
- exportloopref #https://github.com/kyoh86/exportloopref
14+
- copyloopvar #https://github.com/karamaru-alpha/copyloopvar
1515
- bodyclose #https://github.com/timakin/bodyclose
1616
# - goconst #https://github.com/jgautheron/goconst
1717
- stylecheck #https://github.com/dominikh/go-tools/tree/master/stylecheck
@@ -31,6 +31,10 @@ issues:
3131
linters:
3232
- unused
3333
- deadcode
34+
# This exclusion can be removed if desired
35+
- linters:
36+
- stylecheck
37+
text: "error strings should not be capitalized"
3438
# Exclude stylecheck underscore warnings in test files since most test files already follow this pattern
3539
- linters:
3640
- stylecheck

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ ENHANCEMENTS:
2525

2626
* resource/tfe_saml_settings: Add `private_key_wo` write-only attribute, by @uturunku1 ([#1660](https://github.com/hashicorp/terraform-provider-tfe/pull/1660))
2727

28+
* resource/tfe_ssh_key: Add `key_wo` write-only attribute, by @ctrombley ([#1659](https://github.com/hashicorp/terraform-provider-tfe/pull/1659))
29+
2830
* resource/tfe_notification_configuration: Add `token_wo` write-only attribute, by @uturunku1 ([#1664](https://github.com/hashicorp/terraform-provider-tfe/pull/1664))
2931

3032
## v.0.64.0
@@ -40,6 +42,9 @@ BUG FIXES:
4042

4143
* `r/tfe_workspace_settings`: Prevent fetching of all workspaces as the `remote_state_consumer_ids` when `global_remote_state` is set to true, by @uk1288 [#1606](https://github.com/hashicorp/terraform-provider-tfe/pull/1606)
4244

45+
ENHANCEMENTS:
46+
* **New Ephemeral Resource:** `tfe_outputs` is a new ephemeral resource for retrieving the state version outputs of a workspace without writing sensitive data to the state file, by @ctrombley [#1640](https://github.com/hashicorp/terraform-provider-tfe/pull/1640)
47+
4348
## v.0.63.0
4449

4550
BUG FIXES:

go.mod

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ require (
2525
github.com/mattn/go-isatty v0.0.20 // indirect
2626
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
2727
github.com/zclconf/go-cty v1.16.2
28+
github.com/zclconf/go-cty v1.16.2 // indirect
2829
golang.org/x/crypto v0.36.0 // indirect
2930
golang.org/x/net v0.37.0 // indirect
3031
golang.org/x/oauth2 v0.25.0 // indirect

0 commit comments

Comments
 (0)