vagrant-azure 2.0.0.pre6 → 2.0.0.pre7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -3
- data/lib/vagrant-azure/version.rb +1 -1
- data/vagrant-azure.gemspec +1 -0
- metadata +16 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 33f6326fa39dd282d33944a392578b0de18dc48f
|
4
|
+
data.tar.gz: 2cc37dc608a84b4c85dfd264bff05138ecd22597
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9bf9e2e684cec5afafc2d5a7c611855aab4bcd52280860df67181c3983025f908574b05686e75cf443dad8475e1d5cc58da2259796423e1cde7b42506dea39a2
|
7
|
+
data.tar.gz: ed6f81233d797cb17be77fdabca56eefaeff6cf63ef4688dc8547dee9bec89ad68a476522e750c1fe7d986ab45b607f634923e83028df55892554ce741333e0b
|
data/README.md
CHANGED
@@ -125,9 +125,9 @@ For instructions on how to setup an Azure Active Directory Application see: <htt
|
|
125
125
|
* `virtual_network_name`: (Optional) Name of the virtual network resource
|
126
126
|
* `subnet_name`: (Optional) Name of the virtual network subnet resource
|
127
127
|
* `tcp_endpoints`: (Optional) The custom inbound security rules part of network security group (a.k.a. opened tcp endpoints). Allows specifying one or more intervals in the form of:
|
128
|
-
|
129
|
-
|
130
|
-
|
128
|
+
* an array `['8000-9000', '9100-9200']`,
|
129
|
+
* a single interval as `'8000-9000'`,
|
130
|
+
* a single port as `8000`.
|
131
131
|
* `instance_ready_timeout`: (Optional) The timeout to wait for an instance to become ready -- default 120 seconds.
|
132
132
|
* `instance_check_interval`: (Optional) The interval to wait for checking an instance's state -- default 2 seconds.
|
133
133
|
* `endpoint`: (Optional) The Azure Management API endpoint -- default `ENV['AZURE_MANAGEMENT_ENDPOINT']` if exists, falls back to <https://management.azure.com>.
|
data/vagrant-azure.gemspec
CHANGED
@@ -23,6 +23,7 @@ Gem::Specification.new do |s|
|
|
23
23
|
s.add_runtime_dependency 'azure_mgmt_compute', '~>0.8.0'
|
24
24
|
s.add_runtime_dependency 'azure_mgmt_network', '~>0.8.0'
|
25
25
|
s.add_runtime_dependency 'azure_mgmt_storage', '~>0.8.0'
|
26
|
+
s.add_runtime_dependency 'faraday', '~>0.11.0'
|
26
27
|
s.add_runtime_dependency 'haikunator', '~>1.1'
|
27
28
|
s.add_runtime_dependency 'highline', '~>1.7'
|
28
29
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-azure
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.0.
|
4
|
+
version: 2.0.0.pre7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Azure
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-04-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: azure_mgmt_resources
|
@@ -66,6 +66,20 @@ dependencies:
|
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: 0.8.0
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: faraday
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 0.11.0
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 0.11.0
|
69
83
|
- !ruby/object:Gem::Dependency
|
70
84
|
name: haikunator
|
71
85
|
requirement: !ruby/object:Gem::Requirement
|