Skip to content

Commit

Permalink
missed sku -> sku_name
Browse files Browse the repository at this point in the history
  • Loading branch information
katbyte committed Jul 22, 2019
1 parent a0944f1 commit 8cc6149
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion azurerm/resource_arm_maps_account.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ func resourceArmMapsAccountCreateUpdate(d *schema.ResourceData, meta interface{}
name := d.Get("name").(string)
resGroup := d.Get("resource_group_name").(string)
tags := d.Get("tags").(map[string]interface{})
sku := d.Get("sku").(string)
sku := d.Get("sku_name").(string)

if requireResourcesToBeImported && d.IsNewResource() {
existing, err := client.Get(ctx, resGroup, name)
Expand Down

0 comments on commit 8cc6149

Please sign in to comment.