File tree Expand file tree Collapse file tree 1 file changed +7
-8
lines changed
terraform-provider-civo/k8s/talos Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -33,9 +33,15 @@ cd terraform-examples/terraform-provider-civo/k8s/talos
3333```
3434
3535### 2️⃣ Set up your variables
36- Create a terraform.tfvars or env-vars file:
36+ Create a terraform.tfvars file: [ tfvars.example ] ( ./terraform.tfvars.example )
3737
3838``` hcl
39+ ...
40+ app_name = "grafana"
41+ chart_version = "1.15.3"
42+ ```
43+ Or use a source file using TF_VAR exports:
44+ ``` bash
3945export CIVO_TOKEN=" YOUR_CIVO_API_KEY"
4046export TF_VAR_region=" NYC1"
4147export TF_VAR_compute_type=" standard"
@@ -55,13 +61,6 @@ export TF_VAR_metrics_server_enabled="true"
5561export TF_VAR_ingress_email_issuer=" no-reply@example.cloud"
5662# cluster_node_size="g4s.kube.medium"
5763```
58- Or use a source file using TF_VAR exports:
59- ``` bash
60- export CIVO_TOKEN=" your-civo-api-key"
61- export TF_VAR_region=" NYC1"
62- export TF_VAR_grafana_enabled=" true"
63- export TF_VAR_prometheus_enabled=" true"
64- ```
6564### 3️⃣ Deploy the cluster
6665``` bash
6766terraform init
You can’t perform that action at this time.
0 commit comments