vars.tf 902 B

1234567891011121314151617181920212223242526272829303132
  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_region" { type = string }
  11. variable "aws_account_id" { type = string }
  12. variable "common_services_account" { type = string }
  13. variable "responsible_accounts" { type = map(list(string)) }
  14. variable "name" { type = string }
  15. variable "service_role" { type = string }
  16. variable "artifact_s3_bucket" { type = string }
  17. variable "codebuild_image" {type = string }
  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. }