vagrant-azure 1.2.1 → 1.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +8 -14
- data/lib/vagrant-azure/action/run_instance.rb +1 -1
- data/lib/vagrant-azure/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3018a28257bdcc80821fc0dc9b6e290fe2b0d79d
|
4
|
+
data.tar.gz: 60f16bba7743198062f51d3bb03a570f81e5eb4a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 44b0eafc536da864f46dfb2dd75d9e6bd56348c672b30e2fbbbeaab1ed55f93ecf438c555b7de31873233b912179f5d0735bde5fcdc8003bb0c751551be9ed6a
|
7
|
+
data.tar.gz: bb14c60621a2608026f32ab19f6fe99b5cd5b48f70af961a37ebd1fe672f23fad979ce57d9a9767527d686a0bf1ad4d75318d0f795465eec9dfcc00a39591c62
|
data/README.md
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
# Vagrant Azure Provider
|
2
2
|
|
3
|
-
![Gem Version](https://badge.fury.io/rb/vagrant-azure.png)
|
3
|
+
[![Gem Version](https://badge.fury.io/rb/vagrant-azure.png)](https://rubygems.org/gems/vagrant-azure)
|
4
4
|
|
5
5
|
This is a [Vagrant](http://www.vagrantup.com) 1.7.3+ plugin that adds [Microsoft Azure](https://azure.microsoft.com)
|
6
6
|
provider to Vagrant, allowing Vagrant to control and provision machines in Microsoft Azure.
|
7
7
|
|
8
8
|
## Usage
|
9
9
|
|
10
|
-
Install Vagrant 1.
|
10
|
+
Install Vagrant 1.7.3 or higher - [Download Vagrant](http://www.vagrantup.com/downloads.html)
|
11
11
|
|
12
12
|
Install the vagrant-azure plugin using the standard Vagrant 1.1+ installation methods. After installing the plugin, you can ```vagrant up``` and use ```azure``` provider. For example:
|
13
13
|
|
@@ -115,24 +115,18 @@ The vagrant-azure provide exposes a few Azure specific configuration options:
|
|
115
115
|
* `tcp_endpoints` - To open any additional ports. E.g., `80` opens port `80` and `80,3389:53389` opens port `80` and `3389`. Also maps the interal port `3389` to public port `53389`
|
116
116
|
|
117
117
|
### Certificate Generation on Windows
|
118
|
-
We will use `makecert.exe` distributed as part of the in the Windows 7 SDK. The following commands will create the required
|
118
|
+
We will use `makecert.exe` distributed as part of the in the Windows 7 SDK. The following commands will create the required certificate and insert it into the current user’s personal store.
|
119
119
|
|
120
|
-
|
121
|
-
-ss My -sr CurrentUser -len 2048 -sky exchange -sp "Microsoft Enhanced RSA
|
122
|
-
|
123
|
-
|
124
|
-
* makecert.exe -r -pe -a sha1 -n "CN=My Azure RDP Certificate" -ss My -sr CurrentUser -len 2048 -sky exchange -sp "Microsoft Enhanced RSA and AES Cryptographic Provider" -sy 24
|
125
|
-
|
126
|
-
* makecert.exe -r -pe -a sha1 -n "CN=My Azure SSL Certificate" -ss My -sr CurrentUser -len 2048 -sky exchange -sp "Microsoft Enhanced RSA and AES Cryptographic Provider" -sy 24
|
120
|
+
```
|
121
|
+
makecert.exe -r -pe -a sha1 -n "CN=AzCert" -ss My -sr CurrentUser -len 2048 -sky exchange -sp "Microsoft Enhanced RSA and AES Cryptographic Provider" -sy 24
|
122
|
+
```
|
127
123
|
|
128
124
|
(In order to have more details with images in Windows)[http://blogs.msdn.com/b/cclayton/archive/2012/03/21/windows-azure-and-x509-certificates.aspx]
|
129
125
|
|
130
126
|
### Get Started with Publish Settings
|
131
127
|
|
132
|
-
|
133
|
-
[https://manage.windowsazure.com/publishsettings](https://manage.windowsazure.com/publishsettings/index?client=powershell). Make sure you have
|
134
|
-
run `pfxer --in [path to your .publishsettings file]`. This will create a .pfx from your publish settings file which can
|
135
|
-
be supplied as a cert parameter for Service Management Commands.
|
128
|
+
To create a pfx from the publishsettings, simply download the publishsettings file for your subscription
|
129
|
+
[https://manage.windowsazure.com/publishsettings](https://manage.windowsazure.com/publishsettings/index?client=powershell). Make sure you have the [Ruby Azure](https://rubygems.org/gems/azure/versions/0.7.0) gem installed and run `pfxer --in [path to your .publishsettings file]`. This will create a .pfx from your publish settings file which can be supplied as a cert parameter for Service Management Commands.
|
136
130
|
|
137
131
|
### Get Started with OpenSSL
|
138
132
|
|
@@ -73,7 +73,7 @@ module VagrantPlugins
|
|
73
73
|
# a deployment.
|
74
74
|
if config.cloud_service_name && !config.cloud_service_name.empty?
|
75
75
|
begin
|
76
|
-
cloud_service = ManagementHttpRequest.new(
|
76
|
+
cloud_service = Azure::BaseManagement::ManagementHttpRequest.new(
|
77
77
|
:get,
|
78
78
|
"/services/hostedservices/#{config.cloud_service_name}?embed-detail=true"
|
79
79
|
).call
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-azure
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- MSOpenTech
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2015-
|
12
|
+
date: 2015-10-06 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: azure
|