vars.tf 894 B

1234567891011121314151617181920212223242526272829
  1. variable "tags" {
  2. description = "Tags to add to the resource (in addition to global standard tags)"
  3. type = map(any)
  4. default = {}
  5. }
  6. variable "standard_tags" { type = map(any) }
  7. variable "name" { type = string }
  8. variable "codebuild_assume_role_arn" { type = string }
  9. variable "github_clone_url" { type = string }
  10. variable "source_version" { type = string }
  11. variable "env_vars" { type = map(any) }
  12. variable "buildspec" {
  13. type = string
  14. default = "buildspec.yml"
  15. }
  16. variable "schedule_expression" {
  17. type = string
  18. default = ""
  19. }
  20. #variable "environment" { type = string }
  21. #variable "aws_partition" { type = string }
  22. #variable "aws_region" { type = string }
  23. #variable "aws_partition_alias" { type = string }
  24. #variable "aws_account_id" { type = string }
  25. #variable "common_services_account" { type = string }
  26. #variable "responsible_accounts" { type = map(list(string)) }