Skip to content

Commit

Permalink
go fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
marcgs committed Jan 24, 2023
1 parent cc790e5 commit dae10b0
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -146,11 +146,11 @@ func resourceStreamAnalyticsOutputServiceBusTopicCreateUpdate(d *pluginsdk.Resou

systemPropertyColumns := d.Get("system_property_columns").(map[string]interface{})
dataSourceProperties := &outputs.ServiceBusTopicOutputDataSourceProperties{
TopicName: utils.String(d.Get("topic_name").(string)),
ServiceBusNamespace: utils.String(d.Get("servicebus_namespace").(string)),
PropertyColumns: utils.ExpandStringSlice(d.Get("property_columns").([]interface{})),
SystemPropertyColumns: expandSystemPropertyColumns(systemPropertyColumns),
AuthenticationMode: utils.ToPtr(outputs.AuthenticationMode(d.Get("authentication_mode").(string))),
TopicName: utils.String(d.Get("topic_name").(string)),
ServiceBusNamespace: utils.String(d.Get("servicebus_namespace").(string)),
PropertyColumns: utils.ExpandStringSlice(d.Get("property_columns").([]interface{})),
SystemPropertyColumns: expandSystemPropertyColumns(systemPropertyColumns),
AuthenticationMode: utils.ToPtr(outputs.AuthenticationMode(d.Get("authentication_mode").(string))),
}

// Add shared access policy key/name only if required by authentication mode
Expand Down

0 comments on commit dae10b0

Please sign in to comment.