You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/apache-airflow/variables.tf
+24-1Lines changed: 24 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -19,4 +19,27 @@ variable "git_revision" {
19
19
variable"namespace" {
20
20
description="The namespace to deploy into"
21
21
type=string
22
-
}
22
+
}
23
+
24
+
variable"docker_server" {
25
+
description="The docker registry URL"
26
+
default="https://index.docker.io/v1/"
27
+
type=string
28
+
}
29
+
30
+
variable"docker_username" {
31
+
description="Username to log into docker for authenticated pulls"
32
+
default="dpesagebionetworks"
33
+
type=string
34
+
}
35
+
36
+
variable"docker_access_token" {
37
+
description="The access token to use for docker authenticated pulls. Created via by setting 'TF_VAR_docker_access_token' within spacelift as an environment variable"
Copy file name to clipboardExpand all lines: modules/envoy-gateway/variables.tf
+23Lines changed: 23 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -35,3 +35,26 @@ variable "ssl_hostname" {
35
35
description="The hostname to use for the SSL certificate"
36
36
type=string
37
37
}
38
+
39
+
variable"docker_server" {
40
+
description="The docker registry URL"
41
+
default="https://index.docker.io/v1/"
42
+
type=string
43
+
}
44
+
45
+
variable"docker_username" {
46
+
description="Username to log into docker for authenticated pulls"
47
+
default="dpesagebionetworks"
48
+
type=string
49
+
}
50
+
51
+
variable"docker_access_token" {
52
+
description="The access token to use for docker authenticated pulls. Created via by setting 'TF_VAR_docker_access_token' within spacelift as an environment variable"
0 commit comments