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

INTMDB-896: add MicrosoftTeamsWebhookURL to values that are based on schema vs API #1279

Merged
merged 4 commits into from
Jul 3, 2023
Merged
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -754,6 +754,7 @@ func flattenAlertConfigurationNotifications(d *schema.ResourceData, notification
notifications[i].WebhookSecret = notificationsSchema[i].WebhookSecret
notifications[i].SMSEnabled = notificationsSchema[i].SMSEnabled
notifications[i].EmailEnabled = notificationsSchema[i].EmailEnabled
notifications[i].MicrosoftTeamsWebhookURL = notificationsSchema[i].MicrosoftTeamsWebhookURL
Copy link
Collaborator

@andreaangiolillo andreaangiolillo Jul 3, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is flattenAlertConfigurationNotifications used also in the data sources? I am wondering if we need to update the data source as well. 🤔

}
}

Expand Down