blob: 7647ecfc911c549ebaa817b6fa5bac92b08f6f69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
variable "region" {
description = "AWS Region."
type = string
default = "eu-central-1"
}
variable "vault_provider_address" {
description = "Vault cluster address."
type = string
default = "http://10.30.51.24:8200"
}
variable "vault_provider_skip_tls_verify" {
description = "Verification of the Vault server's TLS certificate."
type = bool
default = false
}
variable "vault_provider_token" {
description = "Vault root token."
type = string
default = "s.4z5PsufFwV3sHbCzK9Y2Cojd"
}
variable "vault_name" {
type = string
default = "dynamic-aws-creds-vault-fdio-csit-jenkins"
}
variable "application_bucket" {
description = "The name of the bucket."
type = string
default = "elasticbeanstalk-eu-central-1-407116685360"
}
variable "application_description" {
description = "Short description of the Application Version."
type = string
default = "FD.io CDASH"
}
variable "application_name" {
description = "Name of the Beanstalk Application."
type = string
default = "fdio-csit-dash-app"
}
variable "application_source" {
description = "The source file with application code."
type = string
default = "../../csit.infra.dash/app.zip"
}
variable "application_version" {
description = "Application version string."
type = number
default = 41
}
|