Skip to content
Merged
Show file tree
Hide file tree
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 @@ -40,7 +40,7 @@ func monitorNotificationChannelPrometheusAlertManager(name string) string {
return fmt.Sprintf(`
resource "sysdig_monitor_notification_channel_prometheus_alert_manager" "nc_prometheus_alert_manager" {
name = "%s"
url = "https://testurl.com/xxx"
url = "https://example.com/test"
allow_insecure_connections = true
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func secureNotificationChannelPrometheusAlertManager(name string) string {
return fmt.Sprintf(`
resource "sysdig_secure_notification_channel_prometheus_alert_manager" "nc_prometheus_alert_manager" {
name = "%s"
url = "https://testurl.com/xxx"
url = "https://example.com/test"
allow_insecure_connections = true
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ func monitorNotificationChannelPrometheusAlertManagerWithName(name string) strin
resource "sysdig_monitor_notification_channel_prometheus_alert_manager" "sample-channel1" {
name = "Example Channel %s - prometheus alert manager"
enabled = true
url = "https://testurl.com/xxx"
url = "https://example.com/test"
notify_when_ok = false
notify_when_resolved = false
send_test_notification = false
Expand All @@ -81,7 +81,7 @@ func monitorNotificationChannelPrometheusAlertManagerWithNameWithAdditionalheade
resource "sysdig_monitor_notification_channel_prometheus_alert_manager" "sample-channel2" {
name = "Example Channel %s - prometheus alert manager With Additional Headers"
enabled = true
url = "https://testurl.com/xxx"
url = "https://example.com/test"
notify_when_ok = false
notify_when_resolved = false
send_test_notification = false
Expand All @@ -96,7 +96,7 @@ func monitorNotificationChannelPrometheusAlertManagerWithNameWithAllowInsecureCo
resource "sysdig_monitor_notification_channel_prometheus_alert_manager" "sample-channel3" {
name = "Example Channel %s - prometheus alert manager with insecure connections"
enabled = true
url = "https://testurl.com/xxx"
url = "https://example.com/test"
notify_when_ok = false
notify_when_resolved = false
send_test_notification = false
Expand All @@ -109,7 +109,7 @@ func monitorNotificationChannelPrometheusAlertManagerSharedWithCurrentTeam(name
resource "sysdig_monitor_notification_channel_prometheus_alert_manager" "sample-channel4" {
name = "Example Channel %s - prometheus alert manager with share with current team"
enabled = true
url = "https://testurl.com/xxx"
url = "https://example.com/test"
notify_when_ok = false
notify_when_resolved = false
send_test_notification = false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ func secureNotificationChannelPrometheusAlertManagerWithName(name string) string
resource "sysdig_secure_notification_channel_prometheus_alert_manager" "sample-channel1" {
name = "Example Channel %s - prometheus alert manager"
enabled = true
url = "https://testurl.com/xxx"
url = "https://example.com/test"
notify_when_ok = false
notify_when_resolved = false
send_test_notification = false
Expand All @@ -81,7 +81,7 @@ func secureNotificationChannelPrometheusAlertManagerWithNameWithAdditionalheader
resource "sysdig_secure_notification_channel_prometheus_alert_manager" "sample-channel2" {
name = "Example Channel %s - prometheus alert manager With Additional Headers"
enabled = true
url = "https://testurl.com/xxx"
url = "https://example.com/test"
notify_when_ok = false
notify_when_resolved = false
send_test_notification = false
Expand All @@ -96,7 +96,7 @@ func secureNotificationChannelPrometheusAlertManagerWithNameWithAllowInsecureCon
resource "sysdig_secure_notification_channel_prometheus_alert_manager" "sample-channel3" {
name = "Example Channel %s - prometheus alert manager with insecure connections"
enabled = true
url = "https://testurl.com/xxx"
url = "https://example.com/test"
notify_when_ok = false
notify_when_resolved = false
send_test_notification = false
Expand All @@ -109,7 +109,7 @@ func secureNotificationChannelPrometheusAlertManagerSharedWithCurrentTeam(name s
resource "sysdig_secure_notification_channel_prometheus_alert_manager" "sample-channel4" {
name = "Example Channel %s - prometheus alert manager with share with current team"
enabled = true
url = "https://testurl.com/xxx"
url = "https://example.com/test"
notify_when_ok = false
notify_when_resolved = false
send_test_notification = false
Expand Down
Loading