Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade Terraform Plugin SDK to v2 #375

Merged
merged 20 commits into from
Oct 8, 2021
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
d2de409
`tf-sdk-migrator v2upgrade`
pdecat Aug 18, 2021
6ce481d
`go mod vendor`
pdecat Aug 18, 2021
39b8a58
Removal of helper/schema.Schema.Removed, see https://www.terraform.io…
pdecat Aug 18, 2021
a45b5b9
Removal of the terraform.ResourceProvider Interface, see https://www.…
pdecat Aug 18, 2021
5ae75e8
Removal of Deprecated Validation Functions, see https://www.terraform…
pdecat Aug 18, 2021
10f2914
More Robust Validation of helper/schema.TypeMap Elems, see https://ww…
pdecat Aug 18, 2021
93e1c71
Upgrade terraform-plugin-sdk and transitively terraform-json to get h…
pdecat Aug 18, 2021
f187896
Fix `panic: alert_grouping_timeout: '' expected type 'int', got uncon…
pdecat Aug 18, 2021
6093877
Fix `Error: Output refers to sensitive values`
pdecat Aug 18, 2021
7b7f7cb
Fix `panic: Invalid address to set: []string{"address"}` for `address…
pdecat Aug 18, 2021
604a0e2
Fix `panic: Invalid address to set: []string{"summary"}` formissing `…
pdecat Aug 18, 2021
596ce75
Fix `panic: extension_schema: '' expected type 'string', got unconver…
pdecat Aug 18, 2021
fc6c910
Fix `panic: Invalid address to set: []string{"summary"}` for missing …
pdecat Aug 18, 2021
9f50ca3
Fix `panic: extension_schema: '' expected type 'string', got unconver…
pdecat Aug 18, 2021
51d0e3c
Fix `An argument named "contact_method" is not expected here.` error:
pdecat Aug 19, 2021
32fa231
Fix `panic: Invalid address to set: []string{"type"}` error:
pdecat Aug 19, 2021
d3921e0
Do not set service.AlertGroupingParameters to an empty struct if aler…
pdecat Aug 20, 2021
6ae57df
Fix `panic: alert_grouping_timeout: '' expected type 'string', got un…
pdecat Aug 20, 2021
84e84f9
Fix `pagerduty_service.foo: Attribute 'alert_grouping_timeout' found …
pdecat Aug 20, 2021
9b6fc67
Fix `cannot use func literal (type func(*schema.ResourceDiff, interfa…
pdecat Sep 28, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
More Robust Validation of helper/schema.TypeMap Elems, see https://ww…
  • Loading branch information
pdecat committed Sep 28, 2021
commit 10f2914c768f85442aa2ea6ef9c316516eec8279
2 changes: 1 addition & 1 deletion pagerduty/resource_pagerduty_user_notification_rule.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func resourcePagerDutyUserNotificationRule() *schema.Resource {
},
"contact_method": {
Required: true,
Type: schema.TypeMap,
Type: schema.TypeSet,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"id": {
Expand Down