Skip to content

Commit c59cc51

Browse files
authored
Merge pull request #1664 from hashicorp/notification-configuration-migration
migrate tfe_notification_configuration to the provider framework and add write-only token
2 parents aa0e599 + df40bb2 commit c59cc51

8 files changed

+593
-337
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ ENHANCEMENTS:
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

2828
* resource/tfe_ssh_key: Add `key_wo` write-only attribute, by @ctrombley ([#1659](https://github.com/hashicorp/terraform-provider-tfe/pull/1659))
29+
30+
* resource/tfe_notification_configuration: Add `token_wo` write-only attribute, by @uturunku1 ([#1664](https://github.com/hashicorp/terraform-provider-tfe/pull/1664))
31+
2932
## v.0.64.0
3033

3134
FEATURES:

internal/provider/provider.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@ func Provider() *schema.Provider {
110110
"tfe_agent_pool": resourceTFEAgentPool(),
111111
"tfe_agent_pool_allowed_workspaces": resourceTFEAgentPoolAllowedWorkspaces(),
112112
"tfe_agent_token": resourceTFEAgentToken(),
113-
"tfe_notification_configuration": resourceTFENotificationConfiguration(),
114113
"tfe_oauth_client": resourceTFEOAuthClient(),
115114
"tfe_opa_version": resourceTFEOPAVersion(),
116115
"tfe_organization": resourceTFEOrganization(),

internal/provider/provider_next.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@ func (p *frameworkProvider) Resources(ctx context.Context) []func() resource.Res
164164
NewTeamNotificationConfigurationResource,
165165
NewTestVariableResource,
166166
NewWorkspaceRunTaskResource,
167+
NewNotificationConfigurationResource,
167168
}
168169
}
169170

0 commit comments

Comments
 (0)