Skip to content

Commit

Permalink
Add azure_nic_set_subnet back
Browse files Browse the repository at this point in the history
  • Loading branch information
katcipis committed Jan 25, 2017
1 parent eff8f1f commit f33659e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions azure/nic.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ fn azure_nic_set_vnet(instance, vnet) {
return $instance
}

fn azure_nic_set_subnet(instance, subnet) {
instance <= append($instance, "--subnet-name")
instance <= append($instance, $subnet)
return $instance
}

fn azure_nic_set_subnet_id(instance, subnetid) {
instance <= append($instance, "--subnet-id")
instance <= append($instance, $subnetid)
Expand Down

0 comments on commit f33659e

Please sign in to comment.