12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- variable "tags" {
- description = "Tags to add to the resource (in addition to global standard tags)"
- type = map(any)
- default = {}
- }
- variable "standard_tags" { type = map(any) }
- 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 "environment" { type = string }
- #variable "aws_partition" { type = string }
- #variable "aws_region" { type = string }
- #variable "aws_partition_alias" { type = string }
- #variable "aws_account_id" { type = string }
- #variable "common_services_account" { type = string }
- #variable "responsible_accounts" { type = map(list(string)) }
|