Your Name hace 3 años
padre
commit
3dbfaece67
Se han modificado 1 ficheros con 6 adiciones y 0 borrados
  1. 6 0
      hhh/aws-monitor/cl-test.py

+ 6 - 0
hhh/aws-monitor/cl-test.py

@@ -0,0 +1,6 @@
+import subprocess
+cmd='aws cloudtrail lookup-events --lookup-attributes AttributeKey=EventName,AttributeValue=RunInstances --max-results 20 --region us-east-1'
+cmds=cmd.split(' ')
+cl=subprocess.run(cmds, capture_output=True)
+print(cl)
+