Skip to content

Commit 293e180

Browse files
authored
Merge pull request #6 from splunk/bug-pagination-issue
fix: fixed issue with Azure AD audit input creation
2 parents b4b28e0 + f3c3fb1 commit 293e180

File tree

6 files changed

+12
-7
lines changed

6 files changed

+12
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Version 4.0.1
1+
# Version 4.0.2
22
* Bug fix - Problem creating new AAD Audit Input - [Issue #3](https://github.com/splunk/splunk-add-on-microsoft-azure/issues/3)
33
* Bug fix - Azure AD User and Group pagination issue
44

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This add-on is built with Splunk's [UCC Generator](https://github.com/splunk/add
1212

1313
Example:
1414

15-
ucc-gen --ta-version=4.0.1
15+
ucc-gen --ta-version=4.0.2
1616

1717
The add-on will be built in an `output` directory in the root of the repository.
1818

globalConfig.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"meta": {
33
"name": "TA-MS-AAD",
44
"displayName": "Splunk Add-on for Microsoft Azure",
5-
"version": "4.0.1",
5+
"version": "4.0.2",
66
"apiVersion": "3.0.0",
77
"restRoot": "TA_MS_AAD",
88
"schemaVersion": "0.0.3"
@@ -1028,14 +1028,15 @@
10281028
"entity": [
10291029
{
10301030
"type": "helpLink",
1031-
"field": "AAD_sign_in_note",
1031+
"field": "AAD_audit_note",
10321032
"label": "",
10331033
"help": "This input uses Microsoft Graph Azure AD activity reports and is subject to throttling limits. Refer to the documentation link above for more information.",
10341034
"tooltip": "Azure AD throttling guidance",
10351035
"options": {
10361036
"text": "Azure AD throttling guidance",
10371037
"link": "https://github.com/splunk/splunk-add-on-microsoft-azure/wiki/Configure-Azure-Active-Directory-inputs-for-the-Splunk-Add-on-for-Microsoft-Azure#throttling-guidance"
1038-
}
1038+
},
1039+
"required": false
10391040
},
10401041
{
10411042
"field": "name",

package/app.manifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"id": {
66
"group": null,
77
"name": "TA-MS-AAD",
8-
"version": "4.0.1"
8+
"version": "4.0.2"
99
},
1010
"author": [
1111
{

package/bin/MS_AAD_audit.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,10 @@ def get_scheme(self):
7373
scheme.add_argument(smi.Argument("name", title="Name",
7474
description="",
7575
required_on_create=True))
76+
scheme.add_argument(smi.Argument("AAD_audit_note", title="",
77+
description="Azure AD throttling guidance https://splunkbase.splunk.com/app/3757/#/details#throttling-guidance",
78+
required_on_create=False,
79+
required_on_edit=False))
7680
scheme.add_argument(smi.Argument("azure_app_account", title="Azure App Account",
7781
description="",
7882
required_on_create=True,

package/bin/MS_AAD_signins.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def get_scheme(self):
7373
scheme.add_argument(smi.Argument("name", title="Name",
7474
description="",
7575
required_on_create=True))
76-
scheme.add_argument(smi.Argument("AAD_sign_in_note", title=" Date",
76+
scheme.add_argument(smi.Argument("AAD_sign_in_note", title="",
7777
description="Azure AD throttling guidance https://splunkbase.splunk.com/app/3757/#/details#throttling-guidance",
7878
required_on_create=False,
7979
required_on_edit=False))

0 commit comments

Comments
 (0)