/*------------------------------------------------------------------------ | |
File : testJsonContentLength.p | |
Purpose : | |
Syntax : | |
Description : | |
Author(s) : [email protected] |
Let's use curl to completely create a secret within the Akeyless Vault Platform including :
- Authenticate to the Akeyless Vault Platform using the admin API Key Auth Method
- Create a new API Key Auth Method
- Create a new Access Role to allow access to a secret object that WILL BE located at \env\secret
- Associate the new API Key Auth Method to the new Access Role
Just a quick update before we dive in: what we're actually doing here is running Raspberry Pi OS (64-bit) on a QEMU virtual ARM setup. This isn't full-blown hardware emulation of the Raspberry Pi 4, but more about creating a virtual environment for the OS. It doesn't mimic all the specific hardware features of the Pi 4, but it's pretty useful and great for general testing. I turned to this solution mainly to extract a modified sysroot from the Raspberry Pi OS, something not readily available in other resources. For those looking into detailed emulation of the actual Raspberry Pi 4's hardware in QEMU, check out this link for the latest updates: https://gitlab.com/qemu-project/qemu/-/issues/1208.
Hope it helps! :D
Shortcomings: No GUI yet, only console.
NOTE: Do not use self signed certificates in PRODUCTION, for that use a certificate signed by some CA (Certification Authority), and then avoid man-in-the-middle attack.
NOTE: Do not use self signed certificates in PRODUCTION, for that use a certificate signed by some CA (Certification Authority), and then avoid man-in-the-middle attack.
The aim was to be able to:
- Run multiple Linux VMs on an Apple M1/ARM device
- Use Apple's HVF for native performance speeds
- Configure VMs to allow network access to each other
- Configure VMs to allow access to the internet
- Not rely on custom modifications of software
#!/bin/sh | |
awk 'BEGIN { | |
split("Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec ", months, " ") | |
for (i = 1; i <= 12; i++) | |
m[months[i]] = i | |
}{ | |
split($4,array,/\[|:|\//) | |
year = array[4] | |
month = sprintf("%02d", m[array[3]]) |