Terraform : Installation
This article explains how to install Terrafrom and perform the basic setup required before using it.
oracle miscconfigurationintermediate
by OracleDba
11 views
This article explains how to install Terrafrom and perform the basic setup required before using it.
123456
dnf install -y oraclelinux-developer-release-el8
dnf install -y terraform
set PATH=%PATH%;%homepath%\u01\software\hashicorp\terraform_0.14.6_windows_amd64
terraform -v12345678910111213
mkdir -p $HOME/.oci
openssl genrsa -out $HOME/.oci/my-oci-key.pem 2048
chmod 600 $HOME/.oci/my-oci-key.pem
openssl rsa -pubout -in $HOME/.oci/my-oci-key.pem -out $HOME/.oci/my-oci-key_public.pem
cat $HOME/.oci/my-oci-key_public.pem
set PATH=%PATH%;C:\HashiCorp\Vagrant\embedded\usr\bin
cd %homepath%
mkdir .oci
openssl.exe genrsa -out %homepath%\.oci\my-oci-key.pem 2048
openssl rsa -pubout -in %homepath%\.oci\my-oci-key.pem -out %homepath%\.oci\my-oci-key_public.pem
cat %homepath%\.oci\my-oci-key_public.pemPlease to add comments
No comments yet. Be the first to comment!