diff --git a/newrelic/data_source_newrelic_notifications_destination_test.go b/newrelic/data_source_newrelic_notifications_destination_test.go index 669fe30d4..6e02e5e0c 100644 --- a/newrelic/data_source_newrelic_notifications_destination_test.go +++ b/newrelic/data_source_newrelic_notifications_destination_test.go @@ -133,10 +133,6 @@ func testAccNewRelicNotificationsDestinationDataSourceConfigWithSecureURL(name s data "newrelic_notification_destination" "foo" { name = newrelic_notification_destination.foo.name - - secure_url { - prefix = "https://webhook.site/" - } } `, name) } diff --git a/website/docs/d/notification_destination.html.markdown b/website/docs/d/notification_destination.html.markdown index fbb269e34..da88a713a 100644 --- a/website/docs/d/notification_destination.html.markdown +++ b/website/docs/d/notification_destination.html.markdown @@ -30,10 +30,6 @@ resource "newrelic_notification_channel" "foo-channel" { value = "{\n\t\"name\": \"foo\"\n}" label = "Payload Template" } - - secure_url { - prefix = "https://webhook.site/" - } } ``` @@ -57,10 +53,6 @@ resource "newrelic_notification_channel" "foo-channel" { value = "{\n\t\"name\": \"foo\"\n}" label = "Payload Template" } - - secure_url { - prefix = "https://webhook.site/" - } } ```