mirror of
https://github.com/Mic92/nixos-wiki-infra.git
synced 2024-11-23 00:33:10 +01:00
8 lines
178 B
Bash
8 lines
178 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -euo pipefail
|
||
|
|
||
|
rm -f .terraform.lock.hcl
|
||
|
terraform init -backend-config="password=$GITLAB_TOKEN" -backend-config="username=$GITLAB_USER"
|
||
|
terraform apply
|
||
|
|