mirror of
https://github.com/prowler-cloud/prowler.git
synced 2025-12-19 05:17:47 +00:00
10 lines
320 B
Bash
10 lines
320 B
Bash
#!/bin/bash
|
|
#AMZN-Linux Terraform Install Script
|
|
git clone https://github.com/singergs/prowler.git
|
|
git fetch
|
|
cd prowler
|
|
git checkout -t origin/terraform-kickstart
|
|
sudo yum install -y yum-utils
|
|
sudo yum-config-manager --add-repo https://rpm.releases.hashicorp.com/AmazonLinux/hashicorp.repo
|
|
sudo yum -y install terraform
|