-
-
Save CsBigDataHub/a2615f83f562ab2297d4de22abc59892 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
control "subnet" do | |
describe azurerm_subnet(resource_group: 'MyResourceGroup', vnet: 'vnet-prod', name: 'subnet-web') do | |
it { should exist } | |
its('address_prefix') { should eq '192.168.0.0/24' } | |
its('nsg') { should eq 'my-nsg'} | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment