victorops_contact

A contact represents emails and phone numbers that can be used to contact a user.

NOTE: When adding a contact phone through terraform, a user must manually verify the phone number in the web ui before it can be used in a paging policy.

Example Usage

resource "victorops_contact" "jenny_cell" {
  user_name    = victorops_user.jenny.user_name
  type         = "phone"
  value        = "+13038674309"
  label        = "Jenny's Cell Phone"
}

resource "victorops_contact" "jenny_email" {
  user_name    = victorops_user.jenny.user_name
  type         = "email"
  value        = "jenny@victorops.com"
  label        = "Jenny's Work Email"
}

Argument Reference

The following arguments are supported:

Attributes Reference

The following attributes are exported:

Import

Import is not currently supported