File tree 2 files changed +18
-5
lines changed
2 files changed +18
-5
lines changed Original file line number Diff line number Diff line change @@ -109,11 +109,17 @@ def create_action_data_entries(
109
109
"""
110
110
111
111
results = []
112
- condition_keys = []
113
112
dependent_actions = []
113
+
114
+ # check for condition keys, which can be used with any allowed resource type
115
+ wildcard_condition_keys = []
116
+ if wildcard_resource_type := action_data ["resource_types" ].get ("" ):
117
+ wildcard_condition_keys = wildcard_resource_type ["condition_keys" ]
118
+
114
119
for resource_type , resource_type_entry in action_data ["resource_types" ].items ():
115
120
# Set default value for if no other matches are found
116
121
resource_arn_format = "*"
122
+ condition_keys = []
117
123
# Get the dependent actions
118
124
resource_dependent_actions = resource_type_entry ["dependent_actions" ]
119
125
if resource_dependent_actions :
@@ -123,7 +129,11 @@ def create_action_data_entries(
123
129
service_resource_data = service_prefix_data ["resources" ].get (resource_type )
124
130
if service_resource_data :
125
131
resource_arn_format = service_resource_data .get ("arn" , "*" )
126
- condition_keys = service_resource_data .get ("condition_keys" )
132
+ if resource_condition_keys := service_resource_data .get ("condition_keys" ):
133
+ condition_keys .extend (resource_condition_keys )
134
+
135
+ if wildcard_condition_keys :
136
+ condition_keys .extend (wildcard_condition_keys )
127
137
128
138
temp_dict = {
129
139
"action" : f"{ service_prefix_data ['prefix' ]} :{ action_name } " ,
Original file line number Diff line number Diff line change @@ -145,6 +145,8 @@ def test_get_action_data(self):
145
145
"aws:ResourceTag/${TagKey}" ,
146
146
"ram:PermissionArn" ,
147
147
"ram:PermissionResourceType" ,
148
+ "aws:RequestTag/${TagKey}" ,
149
+ "aws:TagKeys" ,
148
150
],
149
151
"dependent_actions" : [],
150
152
},
@@ -158,6 +160,8 @@ def test_get_action_data(self):
158
160
"aws:ResourceTag/${TagKey}" ,
159
161
"ram:AllowsExternalPrincipals" ,
160
162
"ram:ResourceShareName" ,
163
+ "aws:RequestTag/${TagKey}" ,
164
+ "aws:TagKeys" ,
161
165
],
162
166
"dependent_actions" : [],
163
167
},
@@ -168,9 +172,8 @@ def test_get_action_data(self):
168
172
"api_documentation_link" : "https://docs.aws.amazon.com/ram/latest/APIReference/API_TagResource.html" ,
169
173
"resource_arn_format" : "*" ,
170
174
"condition_keys" : [
171
- "aws:ResourceTag/${TagKey}" ,
172
- "ram:AllowsExternalPrincipals" ,
173
- "ram:ResourceShareName" ,
175
+ "aws:RequestTag/${TagKey}" ,
176
+ "aws:TagKeys" ,
174
177
],
175
178
"dependent_actions" : [],
176
179
},
You can’t perform that action at this time.
0 commit comments