Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jcstorms1 committed Nov 5, 2024
1 parent 0d3a5a5 commit 8d02231
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/serverless-init/cloudservice/containerapp.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ func (c *ContainerApp) GetTags() map[string]string {
}

if c.SubscriptionId != "" && c.ResourceGroup != "" {
resourceId := fmt.Sprintf("/subscriptions/%v/resourcegroups/%v/providers/microsoft.app/containerapps/%v", c.SubscriptionId, c.ResourceGroup, strings.ToLower(appName))
tags["resource_id"] = resourceId
tags[acaResourceID] = resourceId
resourceID := fmt.Sprintf("/subscriptions/%v/resourcegroups/%v/providers/microsoft.app/containerapps/%v", c.SubscriptionId, c.ResourceGroup, strings.ToLower(appName))
tags["resource_id"] = resourceID
tags[acaResourceID] = resourceID

}

Expand Down

0 comments on commit 8d02231

Please sign in to comment.