Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Public IP support for existing vnet deployment #42

Merged
merged 3 commits into from
Jan 4, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ Example predeploy.json:
The following example introduces the ```vnet_id``` and ```subnet_id``` properties under driver_config in the configuration file. This can be applied at the top level, or per platform.
You can use this capability to create the VM on an existing virtual network and subnet created in a different resource group.

In this case, the public IP address is not used.
In this case, the public IP address is not used unless ```public_ip``` is set to ```true```


```yaml
Expand Down
2 changes: 1 addition & 1 deletion kitchen-azurerm.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
spec.homepage = 'https://github.com/pendrica/kitchen-azurerm'
spec.license = 'Apache-2.0'

spec.files = Dir['LICENSE', 'README.md', 'CHANGELOG.md', 'lib/**/*']
spec.files = Dir['LICENSE', 'README.md', 'CHANGELOG.md', 'lib/**/*', 'templates/**/*']
spec.require_paths = ['lib']

spec.add_dependency 'inifile', '~> 3.0', '>= 3.0.0'
Expand Down
Loading