2026-01-18 15:40:43 +00:00
|
|
|
# Terraform Apply
|
|
|
|
|
|
2026-02-07 13:21:58 +00:00
|
|
|
Run terraform apply to deploy infrastructure changes.
|
2026-01-18 15:40:43 +00:00
|
|
|
|
2026-02-07 13:21:58 +00:00
|
|
|
```bash
|
2026-02-07 13:42:10 +00:00
|
|
|
terraform apply -target=module.kubernetes_cluster.module.<service> -var="kube_config_path=$(pwd)/config" -auto-approve
|
2026-01-18 15:40:43 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
ALWAYS use -target to speed up execution. Monitor the output and report any errors or successful completions.
|