-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathvars-manifests.tf
26 lines (23 loc) · 992 Bytes
/
vars-manifests.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
variable "bootstrap_manifests" {
description = "Bootstrap manifests from directories using Kustomize"
type = list(string)
default = ["manifests/apps"]
}
variable "talos_ccm_manifest_url" {
description = "Talos Cloud Controller Manager manifest to use"
type = string
# % is replaced by talos_ccm_version
default = "https://raw.githubusercontent.com/siderolabs/talos-cloud-controller-manager/v%/docs/deploy/cloud-controller-manager.yml"
}
variable "argocd_manifest_url" {
description = "ArgoCD manifest to use"
type = string
# % is replaced by metrics_server_version
default = "https://raw.githubusercontent.com/argoproj/argo-cd/v%/manifests/ha/install.yaml"
}
variable "metrics_server_manifest_url" {
description = "Kubernetes Metrics Server manifest to use"
type = string
# % is replaced by metrics_server_version
default = "https://github.com/kubernetes-sigs/metrics-server/releases/download/v%/components.yaml"
}