12345678910111213141516171819202122232425262728 |
- variable "tags" {
- description = "Tags to add to the resource (in addition to global standard tags)"
- type = map(any)
- default = {}
- }
- variable "name" { type = string }
- variable "kms_key" {
- type = string
- default = ""
- }
- variable "source_version" {
- description = "Tag or branch for the git repository."
- type = string
- default = "master"
- }
- variable "badge_enabled" {
- type = string
- default = "false"
- }
- variable "webhook_filter_pattern" {
- type = string
- default = "^refs/heads/develop$"
- }
|