10 lines
133 B
Bash
Executable File
10 lines
133 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Generate SSH keys
|
|
ssh-keygen -f terraform/ssh/key -q -P ""
|
|
|
|
# Run Terraform
|
|
cd terraform
|
|
terraform init
|
|
terraform apply
|