Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Changes
Page history
Update Building Silvermint Infrastructure
authored
May 15, 2023
by
Rusty Chapin
Show whitespace changes
Inline
Side-by-side
Building-Silvermint-Infrastructure.md
View page @
e4999660
...
...
@@ -118,10 +118,10 @@ This step should be run on a Debian 11 workstation/server that is a fresh instal
#!/bin/bash
# update machine
apt-get update
sudo
apt-get update
# install google-cloud-cli
apt-get
install
-y
apt-transport-https ca-certificates gnupg curl
sudo
wget
sudo
apt-get
install
-y
apt-transport-https ca-certificates gnupg curl
sudo
wget
echo
"deb [signed-by=/usr/share/keyrings/cloud.google.gpg] https://packages.cloud.google.com/apt cloud-sdk main"
|
sudo tee
-a
/etc/apt/sources.list.d/google-cloud-sdk.list
curl https://packages.cloud.google.com/apt/doc/apt-key.gpg |
sudo
apt-key
--keyring
/usr/share/keyrings/cloud.google.gpg add -
sudo
apt-get update
&&
sudo
apt-get
install
-y
google-cloud-cli
...
...
@@ -141,7 +141,7 @@ sudo apt-get install -y terraform
sudo
apt-get
install
-y
git
# create SSH keys folder
mkdir
-p
~/.ssh
sudo
mkdir
-p
~/.ssh
```
You will need to add your public and private SSH keys used to access Google Cloud instances to your .ssh folder.
...
...
...
...