vars.tf 534 B

123456789101112131415161718192021222324
  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 "service_role" { type = string }
  8. variable "artifact_s3_bucket" { type = string }
  9. variable "codebuild_image" { type = string }
  10. variable "kms_key" {
  11. type = string
  12. default = ""
  13. }
  14. variable "badge_enabled" {
  15. type = string
  16. default = "false"
  17. }
  18. variable "webhook_branch_filter" {
  19. type = string
  20. default = "^(master|develop)$"
  21. }