Skip to content

Commit

Permalink
[DEPLOY] v0.7.2 - VerifyAWSAccountAccess bug fix (#377)
Browse files Browse the repository at this point in the history
* Update _version.py

* Fix: Missing body payload. Closes #376.

* Update CHANGELOG.md

* Update wordlist.txt
  • Loading branch information
jshcodes authored Oct 13, 2021
1 parent 6ff3dee commit 52da908
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/wordlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ CheckActiveResponderCommandStatus
CheckAdminCommandStatus
CheckCommandStatus
ClientID
CloudConnectAWS
CodeQL
CreateActionsV
CreateAWSAccount
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Version 0.7.2
## Issues resolved
+ Fixed: Missing body payload in CloudConnectAWS.verify_aws_account_access. Closes #376.

# Version 0.7.1
## Added features and functionality
+ Updated: Service Class Refactoring (Rev 4)
Expand Down
2 changes: 1 addition & 1 deletion src/falconpy/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
For more information, please refer to <https://unlicense.org>
"""
_VERSION = '0.7.1'
_VERSION = '0.7.2'
_MAINTAINER = 'Joshua Hiller'
_AUTHOR = 'CrowdStrike'
_AUTHOR_EMAIL = '[email protected]'
Expand Down
8 changes: 7 additions & 1 deletion src/falconpy/cloud_connect_aws.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,12 @@ def create_or_update_aws_settings(self: object, body: dict) -> dict:
)

@force_default(defaults=["parameters", "body"], default_types=["dict"])
def verify_aws_account_access(self: object, *args, parameters: dict = None, **kwargs) -> dict:
def verify_aws_account_access(self: object,
*args,
body: dict = None,
parameters: dict = None,
**kwargs
) -> dict:
"""
Performs an Access Verification check on the specified AWS Account IDs.
"""
Expand All @@ -152,6 +157,7 @@ def verify_aws_account_access(self: object, *args, parameters: dict = None, **kw
endpoints=Endpoints,
operation_id="VerifyAWSAccountAccess",
keywords=kwargs,
body=body,
params=handle_single_argument(args, parameters, "ids")
)

Expand Down

0 comments on commit 52da908

Please sign in to comment.