Skip to content

Releases: cloudposse/terraform-github-repository-webhooks

0.6.0 allow anonymous access if token not set

22 Apr 20:33
bc1fc67

Choose a tag to compare

what

  • allow anonymous access if token not set

why

  • If this module is used in the code pipeline module (e.g., in the ECS web app module), the provider fails with bad credentials, even if the pipeline or webhooks are disabled.
    By setting anonymous access on the provider configuration when the token is not provided, this problem is avoided.

0.5.0 Convert to TF 0.12. Add tests. Add Codefresh test pipeline

29 Oct 16:47
31dc1d6

Choose a tag to compare

what

  • Port module to Terraform 0.12
  • Pin all providers
  • Add example for testing
  • Add bats tests for the example
  • Add Codefresh badge to point to the test pipeline in terraform-modules project
  • Update README

why

  • Module currently does not work with 0.12. Much easier syntax
  • Better regression control
  • Automatically test the example on every commit and pull request
  • Provision resources on AWS in the test account and check the outputs for the correct values
  • terraform-modules project contains pipelines for all terraform modules

0.4.0 Make `github_token` optional

25 May 00:09
85b4ee0

Choose a tag to compare

what

  • Make github_token optional

why

  • If not provided, can be sourced from the GITHUB_TOKEN environment variable
  • Sourcing from the GITHUB_TOKEN environment variable is useful when the module is provisioned from geodesic or CI/CD that have access to the GITHUB_TOKEN environment variable, which in turn could be sourced from SSM using chamber

0.3.0 Remove unused `name` variable

14 May 01:44
893fcb7

Choose a tag to compare

what

  • Remove unused name variable

why

  • Unused
  • Was not removed in #7

0.2.0 Remove `name` for `github_repository_webhook` resource

03 May 17:23

Choose a tag to compare

what

  • Remove name for github_repository_webhook resource

why

  • There is no name field for github_repository_webhooks resource

references

0.1.1: fix: default value for webhook_content_type (#5)

14 Dec 07:35

Choose a tag to compare

* fix: default value for webhook_content_type

* chore: run make to rebuild the readme

0.1.0: Initial implementation (#1)

23 Oct 20:06
a0f1f46

Choose a tag to compare

* Implement GitHub repository webhooks

* Update readme

* Bump ci

* Fix formatting

* Address PR