Skip to content

Commit c4f3923

Browse files
committed
Fix issue #2953 (use nuget pack in module build) and #2302 (add Tags to module manifests)
1 parent f4b20ef commit c4f3923

File tree

43 files changed

+120
-51
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+120
-51
lines changed

src/ResourceManager/ApiManagement/AzureRM.ApiManagement.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ PrivateData = @{
8989
PSData = @{
9090

9191
# Tags applied to this module. These help with module discovery in online galleries.
92-
# Tags = @()
92+
Tags = @("Azure", "ResourceManager", "ARM", "ApiManagement")
9393

9494
# A URL to the license for this module.
9595
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/Automation/AzureRM.Automation.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ PrivateData = @{
8888
PSData = @{
8989

9090
# Tags applied to this module. These help with module discovery in online galleries.
91-
# Tags = @()
91+
Tags = @("Azure", "ResourceManager", "ARM", "Automation")
9292

9393
# A URL to the license for this module.
9494
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/AzureBackup/AzureRM.Backup.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ PrivateData = @{
9090
PSData = @{
9191

9292
# Tags applied to this module. These help with module discovery in online galleries.
93-
# Tags = @()
93+
Tags = @("Azure", "ResourceManager", "ARM", "Backup")
9494

9595
# A URL to the license for this module.
9696
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/AzureBatch/AzureRM.Batch.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ PrivateData = @{
9090
PSData = @{
9191

9292
# Tags applied to this module. These help with module discovery in online galleries.
93-
# Tags = @()
93+
Tags = @("Azure", "ResourceManager", "ARM", "Batch")
9494

9595
# A URL to the license for this module.
9696
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/AzureStackAdmin/AzureRM.AzureStackAdmin.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ PrivateData = @{
8686
PSData = @{
8787

8888
# Tags applied to this module. These help with module discovery in online galleries.
89-
# Tags = @()
89+
Tags = @("Azure", "ResourceManager", "ARM", "AzureStack")
9090

9191
# A URL to the license for this module.
9292
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/AzureStackStorage/AzureRM.AzureStackStorage.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ PrivateData = @{
8888
PSData = @{
8989

9090
# Tags applied to this module. These help with module discovery in online galleries.
91-
# Tags = @()
91+
Tags = @("Azure", "ResourceManager", "ARM", "AzureStack")
9292

9393
# A URL to the license for this module.
9494
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/Cdn/AzureRM.Cdn.psd1

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,26 @@ ModuleList = @()
8383
FileList = @()
8484

8585
# Private data to pass to the module specified in ModuleToProcess
86-
PrivateData = ''
86+
PrivateData = @{
87+
88+
PSData = @{
89+
90+
# Tags applied to this module. These help with module discovery in online galleries.
91+
Tags = @("Azure", "ResourceManager", "ARM", "CDN")
92+
93+
# A URL to the license for this module.
94+
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'
95+
96+
# A URL to the main website for this project.
97+
ProjectUri = 'https://github.com/Azure/azure-powershell'
98+
99+
# A URL to an icon representing this module.
100+
# IconUri = ''
101+
102+
# ReleaseNotes of this module
103+
ReleaseNotes = 'https://github.com/Azure/azure-powershell/blob/dev/ChangeLog.md'
104+
105+
} # End of PSData hashtable
106+
107+
} # End of PrivateData hashtable
87108

88-
}

src/ResourceManager/CognitiveServices/AzureRM.CognitiveServices.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ PrivateData = @{
9292
PSData = @{
9393

9494
# Tags applied to this module. These help with module discovery in online galleries.
95-
# Tags = @()
95+
Tags = @("Azure", "ResourceManager", "ARM", "CognitiveServices")
9696

9797
# A URL to the license for this module.
9898
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/Compute/AzureRM.Compute.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ PrivateData = @{
9494
PSData = @{
9595

9696
# Tags applied to this module. These help with module discovery in online galleries.
97-
# Tags = @()
97+
Tags = @("Azure", "ResourceManager", "ARM", "Compute", "IAAS", "VM", "VirtualMachine")
9898

9999
# A URL to the license for this module.
100100
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/DataFactories/AzureRM.DataFactories.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ PrivateData = @{
9090
PSData = @{
9191

9292
# Tags applied to this module. These help with module discovery in online galleries.
93-
# Tags = @()
93+
Tags = @("Azure", "ResourceManager", "ARM", "DataFactory")
9494

9595
# A URL to the license for this module.
9696
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/DataLakeAnalytics/AzureRM.DataLakeAnalytics.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ PrivateData = @{
9090
PSData = @{
9191

9292
# Tags applied to this module. These help with module discovery in online galleries.
93-
# Tags = @()
93+
Tags = @("Azure", "ResourceManager", "ARM", "DataLake", "Analytics")
9494

9595
# A URL to the license for this module.
9696
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/DataLakeStore/AzureRM.DataLakeStore.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ PrivateData = @{
9090
PSData = @{
9191

9292
# Tags applied to this module. These help with module discovery in online galleries.
93-
# Tags = @()
93+
Tags = @("Azure", "ResourceManager", "ARM", "DataLake", "Store")
9494

9595
# A URL to the license for this module.
9696
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/DevTestLabs/AzureRM.DevTestLabs.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ FileList = @()
8787
PrivateData = @{
8888
PSData = @{
8989
# Tags applied to this module. These help with module discovery in online galleries.
90-
# Tags = @()
90+
Tags = @("Azure", "ResourceManager", "ARM", "DevTestLabs")
9191

9292
# A URL to the license for this module.
9393
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/Dns/AzureRM.Dns.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ PrivateData = @{
8888
PSData = @{
8989

9090
# Tags applied to this module. These help with module discovery in online galleries.
91-
# Tags = @()
91+
Tags = @("Azure", "ResourceManager", "ARM", "DNS")
9292

9393
# A URL to the license for this module.
9494
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/HDInsight/AzureRM.HDInsight.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ PrivateData = @{
8888
PSData = @{
8989

9090
# Tags applied to this module. These help with module discovery in online galleries.
91-
# Tags = @()
91+
Tags = @("Azure", "ResourceManager", "ARM", "HDInsight")
9292

9393
# A URL to the license for this module.
9494
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/Insights/AzureRM.Insights.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ PrivateData = @{
9090
PSData = @{
9191

9292
# Tags applied to this module. These help with module discovery in online galleries.
93-
# Tags = @()
93+
Tags = @("Azure", "ResourceManager", "ARM", "Insights")
9494

9595
# A URL to the license for this module.
9696
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/Intune/AzureRM.Intune.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ PrivateData = @{
9494
PSData = @{
9595

9696
# Tags applied to this module. These help with module discovery in online galleries.
97-
# Tags = @()
97+
Tags = @("Azure", "ResourceManager", "ARM", "InTune")
9898

9999
# A URL to the license for this module.
100100
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/KeyVault/AzureRM.KeyVault.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ PrivateData = @{
9090
PSData = @{
9191

9292
# Tags applied to this module. These help with module discovery in online galleries.
93-
# Tags = @()
93+
Tags = @("Azure", "ResourceManager", "ARM", "KeyVault")
9494

9595
# A URL to the license for this module.
9696
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/LogicApp/AzureRM.LogicApp.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ PrivateData = @{
9090
PSData = @{
9191

9292
# Tags applied to this module. These help with module discovery in online galleries.
93-
# Tags = @()
93+
Tags = @("Azure", "ResourceManager", "ARM", "LogicApp")
9494

9595
# A URL to the license for this module.
9696
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/MachineLearning/AzureRM.MachineLearning.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ PrivateData = @{
8888
PSData = @{
8989

9090
# Tags applied to this module. These help with module discovery in online galleries.
91-
# Tags = @()
91+
Tags = @("Azure", "ResourceManager", "ARM", "MachineLearning")
9292

9393
# A URL to the license for this module.
9494
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/Media/AzureRM.Media.psd1

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,25 @@ ModuleList = @()
8383
FileList = @()
8484

8585
# Private data to pass to the module specified in ModuleToProcess
86-
PrivateData = ''
86+
PrivateData = @{
8787

88-
}
88+
PSData = @{
89+
90+
# Tags applied to this module. These help with module discovery in online galleries.
91+
Tags = @("Azure", "ResourceManager", "ARM", "Media", "MediaServices")
92+
93+
# A URL to the license for this module.
94+
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'
95+
96+
# A URL to the main website for this project.
97+
ProjectUri = 'https://github.com/Azure/azure-powershell'
98+
99+
# A URL to an icon representing this module.
100+
# IconUri = ''
101+
102+
# ReleaseNotes of this module
103+
ReleaseNotes = 'https://github.com/Azure/azure-powershell/blob/dev/ChangeLog.md'
104+
105+
} # End of PSData hashtable
106+
107+
} # End of PrivateData hashtable

src/ResourceManager/Network/AzureRM.Network.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ PrivateData = @{
9090
PSData = @{
9191

9292
# Tags applied to this module. These help with module discovery in online galleries.
93-
# Tags = @()
93+
Tags = @("Azure", "ResourceManager", "ARM", "Network", "VirtualNetwork")
9494

9595
# A URL to the license for this module.
9696
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/NotificationHubs/AzureRM.NotificationHubs.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ PrivateData = @{
8888
PSData = @{
8989

9090
# Tags applied to this module. These help with module discovery in online galleries.
91-
# Tags = @()
91+
Tags = @("Azure", "ResourceManager", "ARM", "Media", "NotificationHubs")
9292

9393
# A URL to the license for this module.
9494
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/OperationalInsights/AzureRM.OperationalInsights.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ PrivateData = @{
9090
PSData = @{
9191

9292
# Tags applied to this module. These help with module discovery in online galleries.
93-
# Tags = @()
93+
Tags = @("Azure", "ResourceManager", "ARM", "OperationalInsights")
9494

9595
# A URL to the license for this module.
9696
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/PowerBIEmbedded/AzureRM.PowerBIEmbedded.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ PrivateData = @{
9090
PSData = @{
9191

9292
# Tags applied to this module. These help with module discovery in online galleries.
93-
# Tags = @()
93+
Tags = @("Azure", "ResourceManager", "ARM", "PowerBI", "PowerBIEmbedded")
9494

9595
# A URL to the license for this module.
9696
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/Profile/AzureRM.Profile.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ PrivateData = @{
9393
PSData = @{
9494

9595
# Tags applied to this module. These help with module discovery in online galleries.
96-
# Tags = @()
96+
Tags = @("Azure", "ResourceManager", "ARM", "Profile", "Authentication", "Environment", "Subscription")
9797

9898
# A URL to the license for this module.
9999
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/RecoveryServices.Backup/AzureRM.RecoveryServices.Backup.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ PrivateData = @{
9090
PSData = @{
9191

9292
# Tags applied to this module. These help with module discovery in online galleries.
93-
# Tags = @()
93+
Tags = @("Azure", "ResourceManager", "ARM", "RecoveryServices", "Backup")
9494

9595
# A URL to the license for this module.
9696
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/RecoveryServices/AzureRM.RecoveryServices.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ PrivateData = @{
8888
PSData = @{
8989

9090
# Tags applied to this module. These help with module discovery in online galleries.
91-
# Tags = @()
91+
Tags = @("Azure", "ResourceManager", "ARM", "RecoveryServices")
9292

9393
# A URL to the license for this module.
9494
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/RedisCache/AzureRM.RedisCache.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ PrivateData = @{
9090
PSData = @{
9191

9292
# Tags applied to this module. These help with module discovery in online galleries.
93-
# Tags = @()
93+
Tags = @("Azure", "ResourceManager", "ARM", "Redis", "Cache")
9494

9595
# A URL to the license for this module.
9696
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/Resources/AzureRM.Resources.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ PrivateData = @{
9494
PSData = @{
9595

9696
# Tags applied to this module. These help with module discovery in online galleries.
97-
# Tags = @()
97+
Tags = @("Azure", "ResourceManager", "ARM", "Provider", "ResourceGroup", "Deployment", "ActiveDirectory", "Authorization")
9898

9999
# A URL to the license for this module.
100100
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/Scheduler/AzureRM.Scheduler.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ PrivateData = @{
9090
PSData = @{
9191

9292
# Tags applied to this module. These help with module discovery in online galleries.
93-
# Tags = @()
93+
Tags = @("Azure", "ResourceManager", "ARM", "Scheduler")
9494

9595
# A URL to the license for this module.
9696
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/ServerManagement/AzureRM.ServerManagement.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ PrivateData = @{
8686
PSData = @{
8787

8888
# Tags applied to this module. These help with module discovery in online galleries.
89-
# Tags = @()
89+
Tags = @("Azure", "ResourceManager", "ARM", "ServerManagement")
9090

9191
# A URL to the license for this module.
9292
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/SiteRecovery/AzureRM.SiteRecovery.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ PrivateData = @{
8888
PSData = @{
8989

9090
# Tags applied to this module. These help with module discovery in online galleries.
91-
# Tags = @()
91+
Tags = @("Azure", "ResourceManager", "ARM", "SiteRecovery")
9292

9393
# A URL to the license for this module.
9494
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/Sql/AzureRM.Sql.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ PrivateData = @{
9797
PSData = @{
9898

9999
# Tags applied to this module. These help with module discovery in online galleries.
100-
# Tags = @()
100+
Tags = @("Azure", "ResourceManager", "ARM", "Sql", "Database")
101101

102102
# A URL to the license for this module.
103103
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/Storage/AzureRM.Storage.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ PrivateData = @{
9393
PSData = @{
9494

9595
# Tags applied to this module. These help with module discovery in online galleries.
96-
# Tags = @()
96+
Tags = @("Azure", "ResourceManager", "ARM", "Storage", "Storage Account")
9797

9898
# A URL to the license for this module.
9999
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/StreamAnalytics/AzureRM.StreamAnalytics.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ PrivateData = @{
9090
PSData = @{
9191

9292
# Tags applied to this module. These help with module discovery in online galleries.
93-
# Tags = @()
93+
Tags = @("Azure", "ResourceManager", "ARM", "StreamAnalytics")
9494

9595
# A URL to the license for this module.
9696
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/Tags/AzureRM.Tags.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ PrivateData = @{
9090
PSData = @{
9191

9292
# Tags applied to this module. These help with module discovery in online galleries.
93-
# Tags = @()
93+
Tags = @("Azure", "ResourceManager", "ARM", "Tags")
9494

9595
# A URL to the license for this module.
9696
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/TrafficManager/AzureRM.TrafficManager.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ PrivateData = @{
8888
PSData = @{
8989

9090
# Tags applied to this module. These help with module discovery in online galleries.
91-
# Tags = @()
91+
Tags = @("Azure", "ResourceManager", "ARM", "TrafficManager")
9292

9393
# A URL to the license for this module.
9494
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/UsageAggregates/AzureRM.UsageAggregates.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ PrivateData = @{
9090
PSData = @{
9191

9292
# Tags applied to this module. These help with module discovery in online galleries.
93-
# Tags = @()
93+
Tags = @("Azure", "ResourceManager", "ARM", "UsageAggregates")
9494

9595
# A URL to the license for this module.
9696
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

src/ResourceManager/Websites/AzureRM.Websites.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ PrivateData = @{
8888
PSData = @{
8989

9090
# Tags applied to this module. These help with module discovery in online galleries.
91-
# Tags = @()
91+
Tags = @("Azure", "ResourceManager", "ARM", "Websites", "Website", "AppService")
9292

9393
# A URL to the license for this module.
9494
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

0 commit comments

Comments
 (0)