vars.tf 809 B

123456789101112131415161718192021222324252627282930
  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 "responsible_accounts" { type = map(list(string)) }
  14. variable "artifact_s3_bucket" { type = string }
  15. variable "codebuild_image" {type = string }
  16. variable "kms_key" {
  17. type = string
  18. default = ""
  19. }
  20. variable "badge_enabled" {
  21. type = string
  22. default = "false"
  23. }
  24. variable "webhook_branch_filter" {
  25. type = string
  26. default = "^(master|develop)$"
  27. }