I hereby claim:
- I am br3ndonland on github.
- I am br3ndonland (https://keybase.io/br3ndonland) on keybase.
- I have a public key ASD0R0m5ki0DtAOVXJoSxQpATuuDzwsBrT_wBRYcsTSwUgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Tutorial and tips for GitHub Actions workflows
Adventures in the land of Python type annotations
#!/usr/bin/env bash | |
# get a list of S3 bucket names | |
# ----------------------------- | |
# aws returns the bucket creation date and name: | |
# 2022-02-22 22:22:22 bucket-name | |
# additional logic is required to produce an array of names. | |
# pure bash | |
# https://github.com/dylanaraps/pure-bash-bible/issues/113 |
#!/usr/bin/env bash | |
# Publish a module to a Terraform Cloud or Terraform Enterprise Private Module Registry | |
# https://developer.hashicorp.com/terraform/cloud-docs/api-docs/private-registry/modules | |
# Note that this script does not work with the public registry (registry.terraform.io). | |
# The public registry requires a connection with a public GitHub repo to publish modules. | |
# https://developer.hashicorp.com/terraform/registry/api-docs | |
# https://developer.hashicorp.com/terraform/registry/modules/publish |