123456789101112131415161718192021222324252627282930313233343536373839 |
- locals {
- # creates a job for each of these types, using <splunk_prefix>:<server type> as the tag
- splunk_server_types = toset([
- #"hf",
- #"idx",
- "sh-es",
- #"sh-cx",
- ])
- }
- variable "source_version" {
- description = "Tag or branch for the git repository."
- type = string
- default = "master"
- }
- variable "tags" {
- description = "Tags to add to the resource (in addition to global standard tags)"
- type = map
- default = { }
- }
- variable "standard_tags" { type = map }
- 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 "common_services_account" { type = string }
- variable "splunk_prefix" { type = string }
- variable "badge_enabled" {
- type = string
- default = "false"
- }
- variable "webhook_branch_filter" {
- type = string
- default = "^(master|develop)$"
- }
|