@cloud-copilot/iam-data 0.18.202603271 → 0.18.202603311
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/data/actions/aidevops.json +15 -0
- package/data/actions/omics.json +71 -0
- package/data/actions/redshift.json +8 -1
- package/data/actions/securityagent.json +74 -160
- package/data/actions/shield.json +1 -1
- package/data/actions/sso.json +282 -94
- package/data/conditionKeys/sso.json +5 -0
- package/data/resourceTypes/omics.json +7 -0
- package/data/resourceTypes/sso.json +8 -4
- package/package.json +2 -2
|
@@ -28,5 +28,10 @@
|
|
|
28
28
|
"key": "sso:ApplicationAccount",
|
|
29
29
|
"description": "Filters access by the account which creates the application. This condition key is not supported for customer managed SAML applications",
|
|
30
30
|
"type": "String"
|
|
31
|
+
},
|
|
32
|
+
"sso:primaryregion": {
|
|
33
|
+
"key": "sso:PrimaryRegion",
|
|
34
|
+
"description": "Filters access by the primary region of the IAM Identity Center instance",
|
|
35
|
+
"type": "String"
|
|
31
36
|
}
|
|
32
37
|
}
|
|
@@ -13,6 +13,13 @@
|
|
|
13
13
|
"aws:ResourceTag/${TagKey}"
|
|
14
14
|
]
|
|
15
15
|
},
|
|
16
|
+
"configuration": {
|
|
17
|
+
"key": "configuration",
|
|
18
|
+
"arn": "arn:${Partition}:omics:${Region}:${Account}:configuration/${Name}",
|
|
19
|
+
"conditionKeys": [
|
|
20
|
+
"aws:ResourceTag/${TagKey}"
|
|
21
|
+
]
|
|
22
|
+
},
|
|
16
23
|
"readset": {
|
|
17
24
|
"key": "readSet",
|
|
18
25
|
"arn": "arn:${Partition}:omics:${Region}:${Account}:sequenceStore/${SequenceStoreId}/readSet/${ReadSetId}",
|
|
@@ -3,7 +3,8 @@
|
|
|
3
3
|
"key": "PermissionSet",
|
|
4
4
|
"arn": "arn:${Partition}:sso:::permissionSet/${InstanceId}/${PermissionSetId}",
|
|
5
5
|
"conditionKeys": [
|
|
6
|
-
"aws:ResourceTag/${TagKey}"
|
|
6
|
+
"aws:ResourceTag/${TagKey}",
|
|
7
|
+
"sso:PrimaryRegion"
|
|
7
8
|
]
|
|
8
9
|
},
|
|
9
10
|
"account": {
|
|
@@ -14,7 +15,8 @@
|
|
|
14
15
|
"key": "Instance",
|
|
15
16
|
"arn": "arn:${Partition}:sso:::instance/${InstanceId}",
|
|
16
17
|
"conditionKeys": [
|
|
17
|
-
"aws:ResourceTag/${TagKey}"
|
|
18
|
+
"aws:ResourceTag/${TagKey}",
|
|
19
|
+
"sso:PrimaryRegion"
|
|
18
20
|
]
|
|
19
21
|
},
|
|
20
22
|
"application": {
|
|
@@ -22,14 +24,16 @@
|
|
|
22
24
|
"arn": "arn:${Partition}:sso::${AccountId}:application/${InstanceId}/${ApplicationId}",
|
|
23
25
|
"conditionKeys": [
|
|
24
26
|
"aws:ResourceTag/${TagKey}",
|
|
25
|
-
"sso:ApplicationAccount"
|
|
27
|
+
"sso:ApplicationAccount",
|
|
28
|
+
"sso:PrimaryRegion"
|
|
26
29
|
]
|
|
27
30
|
},
|
|
28
31
|
"trustedtokenissuer": {
|
|
29
32
|
"key": "TrustedTokenIssuer",
|
|
30
33
|
"arn": "arn:${Partition}:sso::${AccountId}:trustedTokenIssuer/${InstanceId}/${TrustedTokenIssuerId}",
|
|
31
34
|
"conditionKeys": [
|
|
32
|
-
"aws:ResourceTag/${TagKey}"
|
|
35
|
+
"aws:ResourceTag/${TagKey}",
|
|
36
|
+
"sso:PrimaryRegion"
|
|
33
37
|
]
|
|
34
38
|
},
|
|
35
39
|
"applicationprovider": {
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloud-copilot/iam-data",
|
|
3
|
-
"version": "0.18.
|
|
3
|
+
"version": "0.18.202603311",
|
|
4
4
|
"description": "AWS IAM Data",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/cloud-copilot/iam-data.git"
|
|
8
8
|
},
|
|
9
|
-
"updatedAt": "2026-03-
|
|
9
|
+
"updatedAt": "2026-03-31T05:21:13.563Z",
|
|
10
10
|
"exports": {
|
|
11
11
|
".": {
|
|
12
12
|
"import": "./dist/esm/index.js",
|