-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
51 lines (44 loc) · 947 Bytes
/
variables.tf
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
variable "octopus_server_address" {
description = "The URL (including schema) to the Octopus Server. ex: https://example.octopus.com"
type = string
}
variable "octopus_api_key" {
description = "Octopus API Key"
type = string
sensitive = true
}
variable "azure_service_principal" {
type = object({
application_id = string
password = string
subscription_id = string
subscription_id = string
tenant_id = string
name = string
})
sensitive = true
}
variable "github_credentials" {
type = object({
username = string
token = string
})
sensitive = true
}
variable "ops_database_credentials" {
type = object({
username = string
password = string
})
sensitive = true
}
variable "ops_sql_server" {
description = "SQL Server name"
type = string
}
variable "ops_db_runner" {
type = object({
tentacle_url = string
tentacle_thumbprint = string
})
}