1234567891011121314151617181920212223242526272829 |
- 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 "codebuild_assume_role_arn" { type = string }
- variable "github_clone_url" { type = string }
- variable "source_version" { type = string }
- variable "env_vars" { type = map(any) }
- variable "buildspec" {
- type = string
- default = "buildspec.yml"
- }
- variable "schedule_expression" {
- 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)) }
|