No description
Find a file
2025-03-11 21:39:40 -04:00
src Added configure set 2025-03-11 21:39:31 -04:00
.gitignore Added UserData Base64 Encoding 2025-03-11 16:47:43 -04:00
aws.nimble Incremented version 2025-03-11 21:39:40 -04:00
README.md Changes! 2025-03-06 11:58:35 -05:00

AWS

Rudimentary aws-cli wrapper.

Caution

Currently only supports the EC2 command, with a small subset of subcommands

Usage

import aws

echo describeInstances(filters = @[Filter(filterInstanceId, "i-0b1b3b3b3b3b3b3b3")]) # (NextToken: "", Reservations: @[])

echo runInstances(
    count = 42,
    disableApiStop = true,
    userData = "..."
)

echo getInstanceID() # get current instanceId

TODO

  • Crawler to ingest all types and endpoints
  • jsony_plus XML support
  • -> AWS REST support over cli