1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- variable "tags" {
- description = "Tags to add to the resource (in addition to global standard tags)"
- type = map(any)
- default = {}
- }
- variable "name" { type = string }
- variable "service_role" { type = string }
- variable "github_clone_url" { type = string }
- variable "source_version" { type = string }
- variable "env_vars" {
- type = map(any)
- default = {}
- }
- variable "buildspec" {
- type = string
- default = "buildspec.yml"
- }
- variable "kms_key" {
- type = string
- default = ""
- }
- variable "schedule_expression" {
- type = string
- default = ""
- }
- variable "image" {
- type = string
- default = "aws/codebuild/amazonlinux2-x86_64-standard:3.0"
- }
- variable "privileged_mode" {
- type = bool
- default = true
- }
- variable "enable_webhook" {
- type = bool
- default = false
- }
- variable "webhook_branch_filter" {
- type = string
- default = ""
- }
- variable "secondary_sources" {
- type = list(map(any))
- default = [{}]
- }
|