You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is the mac address in a format accepted by windows DHCP
resource"windowsnetwork_dhcp_mac_allowed""a_mac" {
mac="2A-F8-AF-19-FD-B2"
ip "192.168.165.5"
}
windowsnetwork_dhcp_reservation
Argument
Required
Definition
mac
Yes
Mac address of the reservation
ip
No
Ip of the reservation. If not set the provider request a free ip from the DHCP server
description
Yes
Description of reservation
scope_id
Yes
The DHCP's scope id
name
Yes
The reservation name
// Create a reservation with an ipresource"windowsnetwork_dhcp_reservation""reservation_with_ip" {
mac="2A-F8-AF-19-FD-B2"ip="192.168.168.5"description="A reservation"scope_id="192.168.168.0"name="vm-1"
}
// Create a reservation without ipresource"windowsnetwork_dhcp_reservation""reservation_without_ip" {
mac="2A-F8-AF-19-FD-B2"description="A reservation"scope_id="192.168.168.0"name="vm-1"
}
When this resource is destroyed, the reservation and the lease are removed.