vars.tf 778 B

123456789101112131415161718192021222324252627282930313233
  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_region" { type = string }
  9. variable "aws_partition" { type = string }
  10. variable "aws_partition_alias" { type = string }
  11. variable "aws_account_id" { type = string }
  12. variable "name" { type = string }
  13. variable "kms_key" {
  14. type = string
  15. default = ""
  16. }
  17. variable "source_version" {
  18. description = "Tag or branch for the git repository."
  19. type = string
  20. default = "master"
  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. }