2015-12-08 23:30:12 +01:00
package azurerm
import (
"fmt"
"log"
"net/http"
"time"
"github.com/Azure/azure-sdk-for-go/arm/network"
"github.com/hashicorp/terraform/helper/hashcode"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/helper/schema"
)
func resourceArmVirtualNetwork ( ) * schema . Resource {
return & schema . Resource {
Create : resourceArmVirtualNetworkCreate ,
Read : resourceArmVirtualNetworkRead ,
2015-12-09 02:25:05 +01:00
Update : resourceArmVirtualNetworkCreate ,
2015-12-08 23:30:12 +01:00
Delete : resourceArmVirtualNetworkDelete ,
Schema : map [ string ] * schema . Schema {
"name" : & schema . Schema {
Type : schema . TypeString ,
Required : true ,
ForceNew : true ,
} ,
"address_space" : & schema . Schema {
Type : schema . TypeList ,
Required : true ,
Elem : & schema . Schema { Type : schema . TypeString } ,
} ,
2015-12-09 00:50:48 +01:00
"dns_servers" : & schema . Schema {
2015-12-08 23:30:12 +01:00
Type : schema . TypeList ,
Optional : true ,
Elem : & schema . Schema {
Type : schema . TypeString ,
} ,
} ,
"subnet" : & schema . Schema {
Type : schema . TypeSet ,
2016-01-08 23:50:01 +01:00
Optional : true ,
Computed : true ,
2015-12-08 23:30:12 +01:00
Elem : & schema . Resource {
Schema : map [ string ] * schema . Schema {
"name" : & schema . Schema {
Type : schema . TypeString ,
Required : true ,
} ,
"address_prefix" : & schema . Schema {
Type : schema . TypeString ,
Required : true ,
} ,
"security_group" : & schema . Schema {
Type : schema . TypeString ,
Optional : true ,
} ,
} ,
} ,
Set : resourceAzureSubnetHash ,
} ,
"location" : & schema . Schema {
Type : schema . TypeString ,
Required : true ,
ForceNew : true ,
StateFunc : azureRMNormalizeLocation ,
} ,
"resource_group_name" : & schema . Schema {
Type : schema . TypeString ,
Required : true ,
ForceNew : true ,
} ,
2016-01-18 18:45:08 +01:00
"tags" : tagsSchema ( ) ,
2015-12-08 23:30:12 +01:00
} ,
}
}
func resourceArmVirtualNetworkCreate ( d * schema . ResourceData , meta interface { } ) error {
client := meta . ( * ArmClient )
vnetClient := client . vnetClient
log . Printf ( "[INFO] preparing arguments for Azure ARM virtual network creation." )
name := d . Get ( "name" ) . ( string )
location := d . Get ( "location" ) . ( string )
resGroup := d . Get ( "resource_group_name" ) . ( string )
2016-01-18 18:45:08 +01:00
tags := d . Get ( "tags" ) . ( map [ string ] interface { } )
2015-12-08 23:30:12 +01:00
vnet := network . VirtualNetwork {
Name : & name ,
Location : & location ,
Properties : getVirtualNetworkProperties ( d ) ,
2016-01-18 18:45:08 +01:00
Tags : expandTags ( tags ) ,
2015-12-08 23:30:12 +01:00
}
2015-12-09 02:25:05 +01:00
resp , err := vnetClient . CreateOrUpdate ( resGroup , name , vnet )
2015-12-08 23:30:12 +01:00
if err != nil {
return err
}
2015-12-09 02:25:05 +01:00
d . SetId ( * resp . ID )
2015-12-08 23:30:12 +01:00
2015-12-09 02:25:05 +01:00
log . Printf ( "[DEBUG] Waiting for Virtual Network (%s) to become available" , name )
2015-12-08 23:30:12 +01:00
stateConf := & resource . StateChangeConf {
Pending : [ ] string { "Accepted" , "Updating" } ,
2016-01-21 02:20:41 +01:00
Target : [ ] string { "Succeeded" } ,
2015-12-08 23:30:12 +01:00
Refresh : virtualNetworkStateRefreshFunc ( client , resGroup , name ) ,
Timeout : 10 * time . Minute ,
}
if _ , err := stateConf . WaitForState ( ) ; err != nil {
2015-12-09 02:25:05 +01:00
return fmt . Errorf ( "Error waiting for Virtual Network (%s) to become available: %s" , name , err )
2015-12-08 23:30:12 +01:00
}
return resourceArmVirtualNetworkRead ( d , meta )
}
func resourceArmVirtualNetworkRead ( d * schema . ResourceData , meta interface { } ) error {
vnetClient := meta . ( * ArmClient ) . vnetClient
2015-12-09 02:25:05 +01:00
id , err := parseAzureResourceID ( d . Id ( ) )
if err != nil {
return err
}
resGroup := id . ResourceGroup
name := id . Path [ "virtualNetworks" ]
2015-12-08 23:30:12 +01:00
2016-01-08 21:23:54 +01:00
resp , err := vnetClient . Get ( resGroup , name , "" )
2015-12-08 23:30:12 +01:00
if resp . StatusCode == http . StatusNotFound {
d . SetId ( "" )
return nil
}
if err != nil {
return fmt . Errorf ( "Error making Read request on Azure virtual network %s: %s" , name , err )
}
vnet := * resp . Properties
2015-12-09 02:25:05 +01:00
// update appropriate values
2015-12-08 23:30:12 +01:00
d . Set ( "address_space" , vnet . AddressSpace . AddressPrefixes )
subnets := & schema . Set {
F : resourceAzureSubnetHash ,
}
for _ , subnet := range * vnet . Subnets {
s := map [ string ] interface { } { }
s [ "name" ] = * subnet . Name
s [ "address_prefix" ] = * subnet . Properties . AddressPrefix
if subnet . Properties . NetworkSecurityGroup != nil {
s [ "security_group" ] = * subnet . Properties . NetworkSecurityGroup . ID
}
subnets . Add ( s )
}
d . Set ( "subnet" , subnets )
dnses := [ ] string { }
for _ , dns := range * vnet . DhcpOptions . DNSServers {
dnses = append ( dnses , dns )
}
2015-12-09 00:50:48 +01:00
d . Set ( "dns_servers" , dnses )
2015-12-08 23:30:12 +01:00
2016-01-18 18:45:08 +01:00
flattenAndSetTags ( d , resp . Tags )
2015-12-08 23:30:12 +01:00
return nil
}
func resourceArmVirtualNetworkDelete ( d * schema . ResourceData , meta interface { } ) error {
vnetClient := meta . ( * ArmClient ) . vnetClient
2015-12-09 02:25:05 +01:00
id , err := parseAzureResourceID ( d . Id ( ) )
if err != nil {
return err
}
resGroup := id . ResourceGroup
name := id . Path [ "virtualNetworks" ]
_ , err = vnetClient . Delete ( resGroup , name )
2015-12-08 23:30:12 +01:00
return err
}
func getVirtualNetworkProperties ( d * schema . ResourceData ) * network . VirtualNetworkPropertiesFormat {
// first; get address space prefixes:
prefixes := [ ] string { }
for _ , prefix := range d . Get ( "address_space" ) . ( [ ] interface { } ) {
prefixes = append ( prefixes , prefix . ( string ) )
}
// then; the dns servers:
dnses := [ ] string { }
2015-12-09 00:50:48 +01:00
for _ , dns := range d . Get ( "dns_servers" ) . ( [ ] interface { } ) {
2015-12-08 23:30:12 +01:00
dnses = append ( dnses , dns . ( string ) )
}
// then; the subnets:
subnets := [ ] network . Subnet { }
if subs := d . Get ( "subnet" ) . ( * schema . Set ) ; subs . Len ( ) > 0 {
for _ , subnet := range subs . List ( ) {
subnet := subnet . ( map [ string ] interface { } )
name := subnet [ "name" ] . ( string )
prefix := subnet [ "address_prefix" ] . ( string )
secGroup := subnet [ "security_group" ] . ( string )
var subnetObj network . Subnet
subnetObj . Name = & name
subnetObj . Properties = & network . SubnetPropertiesFormat { }
subnetObj . Properties . AddressPrefix = & prefix
if secGroup != "" {
2016-01-08 21:23:54 +01:00
subnetObj . Properties . NetworkSecurityGroup = & network . SecurityGroup {
2015-12-08 23:30:12 +01:00
ID : & secGroup ,
}
}
subnets = append ( subnets , subnetObj )
}
}
// finally; return the struct:
return & network . VirtualNetworkPropertiesFormat {
AddressSpace : & network . AddressSpace {
AddressPrefixes : & prefixes ,
} ,
DhcpOptions : & network . DhcpOptions {
DNSServers : & dnses ,
} ,
Subnets : & subnets ,
}
}
func resourceAzureSubnetHash ( v interface { } ) int {
m := v . ( map [ string ] interface { } )
subnet := m [ "name" ] . ( string ) + m [ "address_prefix" ] . ( string )
if securityGroup , present := m [ "security_group" ] ; present {
subnet = subnet + securityGroup . ( string )
}
return hashcode . String ( subnet )
}
func virtualNetworkStateRefreshFunc ( client * ArmClient , resourceGroupName string , networkName string ) resource . StateRefreshFunc {
return func ( ) ( interface { } , string , error ) {
2016-01-08 21:23:54 +01:00
res , err := client . vnetClient . Get ( resourceGroupName , networkName , "" )
2015-12-08 23:30:12 +01:00
if err != nil {
return nil , "" , fmt . Errorf ( "Error issuing read request in virtualNetworkStateRefreshFunc to Azure ARM for virtual network '%s' (RG: '%s'): %s" , networkName , resourceGroupName , err )
}
return res , * res . Properties . ProvisioningState , nil
}
}