Completed DynamoDB + DAX Benchmarker with a nice TUI to boot

This commit is contained in:
hamilcarBarca17
2023-08-02 18:11:41 -06:00
parent 09862c1b43
commit e42070eefa
55 changed files with 3574 additions and 1 deletions
@@ -0,0 +1,11 @@
- name: Check if rustup is installed
shell:
cmd: command -v rustup 2> /dev/null
ignore_errors: yes
changed_when: no
register: rustup_installation_status
- name: Install Rust via Rustup
shell: >
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
when: rustup_installation_status.rc | int != 0