You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module"newrelic_alert_policy_channel" {
source="./modules/newrelic/r/newrelic_alert_policy_channel"# channel_ids - (required) is a type of set of numberchannel_ids=[]
# policy_id - (required) is a type of numberpolicy_id=null
}
variable"channel_ids" {
description="(required) - Array of channel IDs to apply to the specified policy. We recommended sorting channel IDs in ascending order to avoid drift your Terraform state."type=set(number)
}
variable"policy_id" {
description="(required) - The ID of the policy."type=number
}
resource"newrelic_alert_policy_channel""this" {
# channel_ids - (required) is a type of set of numberchannel_ids=var.channel_ids# policy_id - (required) is a type of numberpolicy_id=var.policy_id
}