vars.tf 538 B

12345678910111213141516171819202122232425262728
  1. variable "tags" {
  2. description = "Tags to add to the resource (in addition to global standard tags)"
  3. type = map(any)
  4. default = {}
  5. }
  6. variable "name" { type = string }
  7. variable "kms_key" {
  8. type = string
  9. default = ""
  10. }
  11. variable "source_version" {
  12. description = "Tag or branch for the git repository."
  13. type = string
  14. default = "master"
  15. }
  16. variable "badge_enabled" {
  17. type = string
  18. default = "false"
  19. }
  20. variable "webhook_filter_pattern" {
  21. type = string
  22. default = "^refs/heads/develop$"
  23. }