-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathazurerm_virtual_network.md.erb
217 lines (139 loc) · 5.96 KB
/
azurerm_virtual_network.md.erb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
---
title: About the azurerm_virtual_network Resource
platform: azure
---
# azurerm\_virtual\_network
Use the `azurerm_virtual_network` InSpec audit resource to test properties related to a
virtual network.
<br />
## Azure REST API version
This resource interacts with version `2018-02-01` of the Azure
Management API. For more information see the [official Azure documentation](https://docs.microsoft.com/en-us/rest/api/virtualnetwork/virtualnetworks/get).
At the moment, there doesn't appear to be a way to select the version of the
Azure API docs. If you notice a newer version being referenced in the official
documentation please open an issue or submit a pull request using the updated
version.
## Availability
### Installation
This resource is available in the `inspec-azure` [resource
pack](https://www.inspec.io/docs/reference/glossary/#resource-pack). To use it, add the
following to your `inspec.yml` in your top-level profile:
depends:
- name: inspec-azure
git: https://github.com/inspec/inspec-azure.git
You'll also need to setup your Azure credentials; see the resource pack
[README](https://github.com/inspec/inspec-azure#inspec-for-azure).
### Version
This resource first became available in 1.1.0 of the inspec-azure resource pack.
## Syntax
The `resource_group` and virtual network `name` must be given as
parameters.
describe azurerm_virtual_network(resource_group: 'MyResourceGroup', name: 'MyVnetName') do
...
end
<br />
## Examples
### Ensure that the virtual network exists in the East US region
describe azurerm_virtual_network(resource_group: resource_group, name: 'MyVnetName') do
it { should exist }
its('location') { should eq 'East US' }
end
### Ensure that the virtual network's dns servers are configured as expected.
describe azurerm_virtual_network(resource_group: resource_group, name: 'MyVnetName') do
its('dns_servers') { should eq ["192.168.0.6"] }
end
### Ensure that the virtual network's address space is configured as expected.
describe azurerm_virtual_network(resource_group: resource_group, name: 'MyVnetName') do
its('address_space') { should eq ["192.168.0.0/24"] }
end
<br />
## Parameters
- `resource_group`, `name`
## Parameter Examples
### resource\_group (required)
Defines the resource group that the virtual network that you wish to test resides in.
describe azurerm_virtual_network(resource_group: 'MyResourceGroup', name: 'MyVnetName') do
...
end
### name (required)
Defines the name of the virtual network that you wish to test.
describe azurerm_virtual_network(resource_group: 'MyResourceGroup', name: 'MyVnetName') do
...
end
## Attributes
- `id`
- `name`
- `location`
- `tags`
- `type`
- `subnets`
- `address_space`
- `dns_servers`
- `vnet_peerings`
- `enable_ddos_protection`
- `enable_vm_protection`
### id
The virtual network's id.
its('id') { should eq(id) }
Id will be in
format:
'/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/Inspec-Azure-mmclane/providers/Microsoft.Network/virtualNetworks/MyVnetName'
### name
The virtual network's name.
its('name') { should eq('MyVnetName') }
### location
The virtual network's location.
its('location') { should eq('East US') }
### type
The virtual network's resource type.
its('type') { should eq 'Microsoft.Network/virtualNetworks' }
### tags
The virtual network's tags.
its('tags') { should eq({ 'key' => 'value' }) }
### subnets
The list of subnet names that are attached to this virtual network.
its('subnets') { should eq ["MySubnetName"] }
### address\_space
The list of address spaces used by the virtual network.
its('address_space') { should eq ["x.x.x.x/x"] }
### dns\_servers
The list of DNS servers configured for the virtual network. The virtual network returns these IP addresses
when virtual machines makes a DHCP request.
its('dns_servers') { should eq ["x.x.x.x", "x.x.x.x"] }
### vnet\_peerings
A mapping of names and the virtual network ids of the virtual network peerings.
its('vnet_peerings') { should eq "MyVnetPeeringConnection"=>"PeeringConnectionID"}
### enable\_ddos\_protection
Boolean value showing if Azure DDoS standard protection is enabled on the virtual network.
its('enable_ddos_protection') { should eq true }
### enable\_vm\_protection
Boolean value showing if the virtual network has VM protection enabled.
its('enable_vm_protection') { should eq false }
### Other Attributes
There are additional attributes that may be accessed that we have not
documented. Please take a look at the [Azure documentation](#-Azure-REST-API-version).
Any attribute in the response may be accessed with the key names separated by
dots (`.`).
The API may not always return keys that do not have any associated data. There
may be cases where the deeply nested property may not have the desired
attribute along your call chain. If you find yourself writing tests against
properties that may be nil, fork this resource pack and add an accessor to the
resource. Within that accessor you'll be able to guard against nil keys. Pull
requests are always welcome.
## Matchers
This InSpec audit resource has the following special matchers. For a full list of
available matchers, please visit our [Universal Matchers
page](https://www.inspec.io/docs/reference/matchers/).
### exists
# If a virtual network is found it will exist
describe azurerm_virtual_network(resource_group: 'MyResourceGroup', name: 'MyVnetName') do
it { should exist }
end
# virtual networks that aren't found will not exist
describe azurerm_virtual_network(resource_group: 'MyResourceGroup', name: 'DoesNotExist') do
it { should_not exist }
end
## Azure Permissions
Your [Service
Principal](https://docs.microsoft.com/en-us/azure/azure-resource-manager/resource-group-create-service-principal-portal)
must be setup with a `contributor` role on the subscription you wish to test.