Resource: aws_chime_voice_connector_termination

Enable Termination settings to control outbound calling from your SIP infrastructure.

Example Usage

resource "aws_chime_voice_connector" "default" {
  name               = "vc-name-test"
  require_encryption = true
}

resource "aws_chime_voice_connector_termination" "default" {
  disabled           = false
  cps_limit          = 1
  cidr_allow_list    = ["50.35.78.96/31"]
  calling_regions    = ["US", "CA"]
  voice_connector_id = aws_chime_voice_connector.default.id
}

Argument Reference

This resource supports the following arguments:

Attribute Reference

This resource exports the following attributes in addition to the arguments above:

Import

In Terraform v1.5.0 and later, use an import block to import Chime Voice Connector Termination using the voice_connector_id. For example:

import {
  to = aws_chime_voice_connector_termination.default
  id = "abcdef1ghij2klmno3pqr4"
}

Using terraform import, import Chime Voice Connector Termination using the voice_connector_id. For example:

% terraform import aws_chime_voice_connector_termination.default abcdef1ghij2klmno3pqr4