Creates a contact flow in Amazon Connect using external content from a JSON file.

Terraform Template

resource "aws_connect_contact_flow" "test" {
  content_hash = filebase64sha256("contact_flow.json")
  description = "Test Contact Flow Description"
  filename = "contact_flow.json"
  instance_id = "aaaaaaaa-bbbb-cccc-dddd-111111111111"
  name = "Test"

  tags = {
    Application = "Terraform"
    Method = "Create"
    Name = "Test Contact Flow"
  }
  type = "CONTACT_FLOW"
  content = ""
}