vars.tf 690 B

12345678910111213141516171819202122232425262728293031323334
  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 "artifact_namespace_type" {
  11. type = string
  12. default = "BUILD_ID"
  13. }
  14. variable "override_artifact_name" {
  15. type = bool
  16. default = false
  17. }
  18. variable "kms_key" {
  19. type = string
  20. default = ""
  21. }
  22. variable "badge_enabled" {
  23. type = string
  24. default = "false"
  25. }
  26. variable "webhook_branch_filter" {
  27. type = string
  28. default = "^(master|develop)$"
  29. }