cloudstrap 0.30.2.pre → 0.30.3.pre
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/bin/cloudstrap +4 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cc52292c5203623fd695f66cc5c2276b89064ad5
|
4
|
+
data.tar.gz: e8244ba8ba5803e52b9ea733f85b3753ec71a57a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 945880c50affe195293385818416f0d2ab15fc5516ec6751bdf281d703909c09c954ed601967be3620a6901e02254cac791988b25de73d8c6b93dc59c87b72e1
|
7
|
+
data.tar.gz: 339b02c7a8221c7a8e11676ac719190e0169e9e56b149d01dfc5600426816980068e45b01dfd4f549b51efaedbb39d21589bfaa267f98aa831c0a542d9fd58e1
|
data/bin/cloudstrap
CHANGED
@@ -91,8 +91,11 @@ EOS
|
|
91
91
|
STDERR.puts <<-EOS
|
92
92
|
When you are ready to proceed, the following command will do the rest:
|
93
93
|
|
94
|
-
ssh -l ubuntu -i #{agent.ssh_key.private_file} #{agent.jumpbox_ip} bootstrap
|
94
|
+
ssh -l ubuntu -i #{agent.ssh_key.private_file} #{agent.jumpbox_ip} bootstrap install bootstrap.properties
|
95
95
|
|
96
|
+
You will need to provide AWS credentials either via environment (recommended) or
|
97
|
+
directly in bootstrap.properties. Alternatively, this can be done automatically
|
98
|
+
if you set BOOTSTRAP_WITHOUT_HUMAN_OVERSIGHT=true and invoke cloudstrap again.
|
96
99
|
EOS
|
97
100
|
else
|
98
101
|
STDERR.puts Pastel.new.bold.bright_yellow.on_blue 'Human oversight has been disabled.'
|