Merge pull request #241 from JakubOnderka/patch-1

fix: [microsoft-azure-appid] Correct type
pull/243/head
Alexandre Dulaunoy 2022-12-01 19:53:49 +01:00 committed by GitHub
commit 38186c0fbb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 4 deletions

View File

@ -97,6 +97,6 @@
"azure-application-id" "azure-application-id"
], ],
"name": "List of Azure Applicaiton IDs", "name": "List of Azure Applicaiton IDs",
"type": "azure-application-ids", "type": "string",
"version": 20221201 "version": 20221201
} }

View File

@ -28,8 +28,7 @@
"substring", "substring",
"hostname", "hostname",
"cidr", "cidr",
"regex", "regex"
"azure-application-ids"
], ],
"type": "string" "type": "string"
}, },

View File

@ -13,7 +13,7 @@ def process(url, dst):
'name': 'List of Azure Applicaiton IDs', 'name': 'List of Azure Applicaiton IDs',
'version': get_version(), 'version': get_version(),
'description': 'List of Azure Application IDs (https://learn.microsoft.com/en-us/troubleshoot/azure/active-directory/verify-first-party-apps-sign-in)', 'description': 'List of Azure Application IDs (https://learn.microsoft.com/en-us/troubleshoot/azure/active-directory/verify-first-party-apps-sign-in)',
'type': 'azure-application-ids', 'type': 'string',
'list': [], 'list': [],
'matching_attributes': ["azure-application-id"] 'matching_attributes': ["azure-application-id"]
} }