vars.tf 748 B

1234567891011121314151617181920212223242526272829
  1. variable "tags" {
  2. description = "Tags to add to the resource (in addition to global standard tags)"
  3. type = map
  4. default = { }
  5. }
  6. variable "standard_tags" { type = map }
  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 "kms_key" {
  16. type = string
  17. default = ""
  18. }
  19. variable "badge_enabled" {
  20. type = string
  21. default = "false"
  22. }
  23. variable "webhook_branch_filter" {
  24. type = string
  25. default = "^(master|develop)$"
  26. }