This repository has been archived by the owner on Jul 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
10 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ Its aim is to prevent data breaches, and to help you detect them promptly if the | |
|
||
---- | ||
|
||
**Please note**: We take Approzium's security and our users' trust very seriously. If you believe you have found a security issue in Approzium, _please responsibly disclose_ by contacting us at [[email protected]](mailto:[email protected]). | ||
**Please note**: We take Approzium's security and our user's trust very seriously. If you believe you have found a security issue in Approzium, _please responsibly disclose_ by contacting us at [[email protected]](mailto:[email protected]). | ||
|
||
See the [SECURITY](.github/SECURITY.md) guide for more details. | ||
|
||
|
@@ -68,13 +68,19 @@ To run the tests, first you will need to: | |
"Version": "2012-10-17", | ||
"Statement": [ | ||
{ | ||
"Action": "secretsmanager:*", | ||
"Effect": "Allow", | ||
"Resource": "*" | ||
"Action": [ | ||
"secretsmanager:CreateSecret", | ||
"secretsmanager:GetSecretValue", | ||
"secretsmanager:UpdateSecret", | ||
"secretsmanager:DeleteSecret", | ||
"secretsmanager:PutSecretValue" | ||
], | ||
"Resource": "arn:aws:secretsmanager:us-east-2:<some-account-id>:secret:approzium/*" | ||
}, | ||
{ | ||
"Action": "sts:AssumeRole", | ||
"Effect": "Allow", | ||
"Action": "sts:AssumeRole", | ||
"Resource": "arn:aws:iam::<some-account-id>:role/ApproziumTestAssumableRole" | ||
} | ||
] | ||
|