FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

aws_codecommit_trigger

Provides a CodeCommit Trigger Resource.

~> NOTE on CodeCommit: The CodeCommit is not yet rolled out in all regions - available regions are listed the AWS Docs.

Example Usage

resource "aws_codecommit_trigger" "test" {
   depends_on = ["aws_codecommit_repository.test"]
   repository_name = "my_test_repository"
    trigger {
      name = "noname"
      events = ["all"]
      destination_arn = "${aws_sns_topic.test.arn}"
  }
 }

Argument Reference

The following arguments are supported:


See the source of this document at Terraform.io