Skip to content

Commit

Permalink
made sure files are added
Browse files Browse the repository at this point in the history
  • Loading branch information
Gil ISAACS authored and Gil ISAACS committed Jul 17, 2017
1 parent 87277d4 commit f0c1c67
Show file tree
Hide file tree
Showing 6 changed files with 2,972 additions and 2 deletions.
4 changes: 2 additions & 2 deletions azurerm/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ type ArmClient struct {
diskClient disk.DisksClient
documentDBClient documentdb.DatabaseAccountsClient

appGatewayClient network.ApplicationGatewaysClient
applicationGatewayClient network.ApplicationGatewaysClient
ifaceClient network.InterfacesClient
expressRouteCircuitClient network.ExpressRouteCircuitsClient
loadBalancerClient network.LoadBalancersClient
Expand Down Expand Up @@ -248,7 +248,7 @@ func (c *Config) getArmClient() (*ArmClient, error) {
setUserAgent(&agc.Client)
agc.Authorizer = auth
agc.Sender = autorest.CreateSender(withRequestLogging())
client.appGatewayClient = agc
client.applicationGatewayClient = agc

crc := containerregistry.NewRegistriesClientWithBaseURI(endpoint, c.SubscriptionID)
setUserAgent(&crc.Client)
Expand Down
9 changes: 9 additions & 0 deletions azurerm/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,22 @@ func Provider() terraform.ResourceProvider {

ResourcesMap: map[string]*schema.Resource{
// These resources use the Azure ARM SDK
<<<<<<< HEAD
"azurerm_availability_set": resourceArmAvailabilitySet(),
"azurerm_cdn_endpoint": resourceArmCdnEndpoint(),
"azurerm_cdn_profile": resourceArmCdnProfile(),
"azurerm_container_registry": resourceArmContainerRegistry(),
"azurerm_container_service": resourceArmContainerService(),
"azurerm_cosmosdb_account": resourceArmCosmosDBAccount(),
"azurerm_dns_ptr_record": resourceArmDnsPtrRecord(),
=======
"azurerm_application_gateway": resourceArmApplicationGateway(),
"azurerm_availability_set": resourceArmAvailabilitySet(),
"azurerm_cdn_endpoint": resourceArmCdnEndpoint(),
"azurerm_cdn_profile": resourceArmCdnProfile(),
"azurerm_container_registry": resourceArmContainerRegistry(),
"azurerm_container_service": resourceArmContainerService(),
>>>>>>> For new Application Gateway Resource:

"azurerm_eventhub": resourceArmEventHub(),
"azurerm_eventhub_authorization_rule": resourceArmEventHubAuthorizationRule(),
Expand Down
Loading

0 comments on commit f0c1c67

Please sign in to comment.