Get ARN for Classic WAF rules

0

Hi There,

I'm looking for a way to check rules tags with Classic WAF in python. However list_tags_for_resource requires an ARN. As far as I know, it is not possible to get an ARN with get_rule or create_rule (or update_rule). Is there a way to get the ARN for a Classic WAF rule in python or to get rule tags without using an ARN ?

Thanks.

gefragt vor einem Jahr472 Aufrufe
1 Antwort
0
Akzeptierte Antwort

Hi,

would it be possible for you to construct it yourself? I guess the nature and format of a WAF ARN is kinda of known.

arn:aws:waf::<WAF_REGION>:rule/<RULE_ID>

You would need to find the specific rule id you need, and the list_rules https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/waf/client/list_rules.html may do that trick, unless you already have it.

Hope it helps ;)

profile picture
EXPERTE
beantwortet vor einem Jahr

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen