Skip to content

Commit

Permalink
code changes required for azure sdk v25.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tombuildsstuff committed Feb 13, 2019
1 parent 3db8bb2 commit 7b56aa0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions azurerm/resource_arm_storage_account.go
Original file line number Diff line number Diff line change
Expand Up @@ -799,8 +799,8 @@ func expandStorageAccountCustomDomain(d *schema.ResourceData) *storage.CustomDom
name := domain["name"].(string)
useSubDomain := domain["use_subdomain"].(bool)
return &storage.CustomDomain{
Name: utils.String(name),
UseSubDomain: utils.Bool(useSubDomain),
Name: utils.String(name),
UseSubDomainName: utils.Bool(useSubDomain),
}
}

Expand Down

0 comments on commit 7b56aa0

Please sign in to comment.