12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- variable "tags" {
- description = "Tags to add to the resource (in addition to global standard tags)"
- type = map(any)
- default = {}
- }
- variable "fetch_submodules" {
- description = "Fetch submodules for git?"
- type = bool
- default = false
- }
- variable "source_version" {
- description = "Tag or branch for the git repository."
- type = string
- default = "master"
- }
- variable "enable_webhooks" {
- description = "Build on changes?"
- type = bool
- default = true
- }
- variable "name" { type = string }
- variable "service_role" { type = string }
- variable "artifact_s3_bucket" { type = string }
- variable "codebuild_image" { type = string }
- variable "kms_key" {
- type = string
- default = ""
- }
- variable "badge_enabled" {
- type = string
- default = "false"
- }
- variable "webhook_branch_filter" {
- type = string
- default = "^(master|develop)$"
- }
|