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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6988e9e6d5fd8d3f47e6388ba6d29de2e24859c5
4
- data.tar.gz: 9c7a6571ee284d5adf5060b7dfa8de439a2bce55
3
+ metadata.gz: 3018a28257bdcc80821fc0dc9b6e290fe2b0d79d
4
+ data.tar.gz: 60f16bba7743198062f51d3bb03a570f81e5eb4a
5
5
  SHA512:
6
- metadata.gz: a6fc94b5099e9e693fda510f0444823cffe584e8f9891da5ca51f6833653e67fc0824c1fb1e6f71ce42d91516878897686a35a4032e17f8d3af2ae11d02a45f9
7
- data.tar.gz: 09a6e2436f4dbb220b57cd7daab62b64429e7e76a6dd1ed0781b9366510512dc93bc47e38ebffcd2f2927e3f50dbdf2b84ab1d898731bbcd14342df509884fd5
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.6.0 or higher - [Download Vagrant](http://www.vagrantup.com/downloads.html)
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 certificates and insert them into the current user’s personal store.
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
- * makecert.exe -r -pe -a sha1 -n "CN=My Azure Management Certificate"
121
- -ss My -sr CurrentUser -len 2048 -sky exchange -sp "Microsoft Enhanced RSA
122
- and AES Cryptographic Provider" -sy 24
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
- * To create a pfx from the publishsettings, simply download the publishsettings file for your subscription
133
- [https://manage.windowsazure.com/publishsettings](https://manage.windowsazure.com/publishsettings/index?client=powershell). Make sure you have this gem installed and
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
@@ -6,6 +6,6 @@
6
6
 
7
7
  module VagrantPlugins
8
8
  module WinAzure
9
- VERSION = '1.2.1'
9
+ VERSION = '1.3.0'
10
10
  end
11
11
  end
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.2.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-08-17 00:00:00.000000000 Z
12
+ date: 2015-10-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: azure