Last active
February 6, 2019 21:38
-
-
Save v1k-t0r/19c479bf3d67bbd7fa04e1f8e3f1531c to your computer and use it in GitHub Desktop.
Revisions
-
Viktor Ganin revised this gist
Feb 6, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -19,4 +19,4 @@ * go get * go build * mkdir -p ~/.terraform.d/plugins/ * mv terraform-provider-$PROVIDER_NAME ~/.terraform.d/plugins/ -
Viktor Ganin revised this gist
Feb 6, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,7 +4,7 @@ * sudo apt-get update * sudo apt-get -y upgrade * wget https://dl.google.com/go/go1.11.5.linux-amd64.tar.gz * tar -xvf go1.11.5.linux-amd64.tar.gz * sudo mv go /usr/local * export GOROOT=/usr/local/go * export GOPATH=$HOME/go -
Viktor Ganin revised this gist
Jan 30, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -18,5 +18,5 @@ * cd $GOPATH/src/github.com/terraform-providers/terraform-provider-$PROVIDER_NAME * go get * go build * mkdir -p ~/.terraform.d/plugins/ * mv $GOPATH/bin/terraform-provider-$PROVIDER_NAME ~/.terraform.d/plugins/ -
Viktor Ganin revised this gist
Jan 30, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -14,7 +14,7 @@ * export PROVIDER_NAME=vscale * mkdir -p $GOPATH/src/github.com/terraform-providers * cd $GOPATH/src/github.com/terraform-providers * git clone https://github.com/burkostya/terraform-provider-vscale * cd $GOPATH/src/github.com/terraform-providers/terraform-provider-$PROVIDER_NAME * go get * go build -
Viktor Ganin revised this gist
Jan 28, 2019 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,5 @@ # Terraform vscale plugin installation on Debian 9 ## go instalation * sudo apt-get update * sudo apt-get -y upgrade -
Viktor Ganin revised this gist
Jan 28, 2019 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -10,7 +10,8 @@ ## build terraform provider vscale * export PROVIDER_NAME=vscale * mkdir -p $GOPATH/src/github.com/terraform-providers * cd $GOPATH/src/github.com/terraform-providers * git clone git@github.com:terraform-providers/terraform-provider-$PROVIDER_NAME * cd $GOPATH/src/github.com/terraform-providers/terraform-provider-$PROVIDER_NAME * go get -
Viktor Ganin revised this gist
Jan 28, 2019 . 1 changed file with 4 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -13,7 +13,7 @@ * mkdir -p $GOPATH/src/github.com/terraform-providers; cd $GOPATH/src/github.com/terraform-providers * git clone git@github.com:terraform-providers/terraform-provider-$PROVIDER_NAME * cd $GOPATH/src/github.com/terraform-providers/terraform-provider-$PROVIDER_NAME * go get * go build * mkdir ~/.terraform.d/plugins/ * mv $GOPATH/bin/terraform-provider-$PROVIDER_NAME ~/.terraform.d/plugins/ -
Viktor Ganin revised this gist
Jan 28, 2019 . 1 changed file with 11 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ ## go instalation * sudo apt-get update * sudo apt-get -y upgrade * wget https://dl.google.com/go/go1.11.5.linux-amd64.tar.gz @@ -7,3 +7,13 @@ * export GOROOT=/usr/local/go * export GOPATH=$HOME/go * export PATH=$GOPATH/bin:$GOROOT/bin:$PATH ## build terraform provider vscale * export PROVIDER_NAME=vscale * mkdir -p $GOPATH/src/github.com/terraform-providers; cd $GOPATH/src/github.com/terraform-providers * git clone git@github.com:terraform-providers/terraform-provider-$PROVIDER_NAME * cd $GOPATH/src/github.com/terraform-providers/terraform-provider-$PROVIDER_NAME go get go build mkdir ~/.terraform.d/plugins/ mv $GOPATH/bin/terraform-provider-$PROVIDER_NAME ~/.terraform.d/plugins/ -
Viktor Ganin revised this gist
Jan 28, 2019 . 1 changed file with 8 additions and 8 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,9 +1,9 @@ # go instalation * sudo apt-get update * sudo apt-get -y upgrade * wget https://dl.google.com/go/go1.11.5.linux-amd64.tar.gz * tar -xvf go1.11.4.linux-amd64.tar.gz * sudo mv go /usr/local * export GOROOT=/usr/local/go * export GOPATH=$HOME/go * export PATH=$GOPATH/bin:$GOROOT/bin:$PATH -
Viktor Ganin revised this gist
Jan 28, 2019 . 2 changed files with 9 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ # go instalation sudo apt-get update sudo apt-get -y upgrade wget https://dl.google.com/go/go1.11.5.linux-amd64.tar.gz tar -xvf go1.11.4.linux-amd64.tar.gz sudo mv go /usr/local export GOROOT=/usr/local/go export GOPATH=$HOME/go export PATH=$GOPATH/bin:$GOROOT/bin:$PATH This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,2 +0,0 @@ -
Viktor Ganin created this gist
Jan 28, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,2 @@ sudo apt-get update sudo apt-get -y upgrade