123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- 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 "environment" { type = string }
- variable "aws_region" { type = string }
- variable "aws_partition" { type = string }
- variable "aws_partition_alias" { type = string }
- variable "aws_account_id" { type = string }
- variable "name" { type = string }
- variable "repository_name" { type = string }
- variable "github_clone_url" { type = string }
- variable "vpc_id" { type = string }
- variable "private_subnets" { type = list(any) }
- variable "public_subnets" { type = list(any) }
- variable "service_role" { type = string }
- variable "common_services_account" { type = string }
- variable "binaries_key" { type = string }
- variable "xdr-s3-binaries-policy" { type = string }
- variable "kms_key" {
- type = string
- default = ""
- }
- variable "source_version" {
- description = "Tag or branch for the git repository."
- type = string
- default = "main"
- }
- variable "badge_enabled" {
- type = string
- default = "false"
- }
- variable "buildspec" {
- type = string
- default = "buildspec.yml"
- }
- 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 "env_vars" {
- type = map(any)
- default = {}
- }
- variable "webhook_filter_pattern" {
- type = string
- default = "^refs/heads/main$"
- }
|