vars.tf 912 B

123456789101112131415161718192021222324252627282930313233343536373839
  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 "standard_tags" { type = map(any) }
  7. variable "environment" { type = string }
  8. variable "aws_partition" { type = string }
  9. variable "aws_partition_alias" { type = string }
  10. variable "aws_account_id" { type = string }
  11. variable "name" { type = string }
  12. variable "service_role" { type = string }
  13. variable "artifact_s3_bucket" { type = string }
  14. variable "codebuild_image" { type = string }
  15. variable "artifact_namespace_type" {
  16. type = string
  17. default = "BUILD_ID"
  18. }
  19. variable "override_artifact_name" {
  20. type = bool
  21. default = false
  22. }
  23. variable "kms_key" {
  24. type = string
  25. default = ""
  26. }
  27. variable "badge_enabled" {
  28. type = string
  29. default = "false"
  30. }
  31. variable "webhook_branch_filter" {
  32. type = string
  33. default = "^(master|develop)$"
  34. }