Notes for week 33 and 34 of 2021

I focused on moving around before the September comes. I bought a new bike and used it to catch-up with friends and family. The road bike makes a difference indeed: I was able to do 175 km stretch in a single day, which makes a lot of visits viable.

I also grabbed a friend and did a two-day Alpine hike. It was very educational for me as I do feel like I failed as a mountain guide1. Everything went fine, but safety buffers were nowhere near of where they should have been. Lessons learned:

  • I’ll make sure to know the exact physical capabilities of everyone involved
  • Do not let other people reroute. Get accurate local information about what conditions are on alternative paths and what are viable abort points
  • End of August is half-September2. Conditions may prevent you from going forward with the original plan
  • Austrian mountain paths are excellently marked even for near-zero visibility
  • Bring spare gloves. Some ladders go through running water and soaked gloves are not fun when temperatures go towards a freezing point
  • Put space blanket on the packing checklist

I finally started serious preparation for my talk. It made me realize how old the Apiary story is by now: this will probably be the last talk touching it.

Next week, I do resume normal operations and there should be more tech updates.

Random

Graveyard

  • Certificates for CloudFront must be located in us-east-1, otherwise they not usable. It seems like that’s the case for all global AWS services. Snippet:
provider "aws" {
  version = "~> 2.0"
  region  = "eu-central-1"
}

provider "aws" {
  region = "us-east-1"
  alias = "global_home"
}


resource "aws_acm_certificate" "cert" {
  domain_name       = local.domain
  validation_method = "DNS"
  provider = aws.global_home
}

  • Terraform automatically reassigns region to us-east-1 for all global services (like IAM or CloudFront) under the hood
  • Getting free certificates from Amazon using Terraform is pretty neat

  1. Technically, I am not one. But I was the organizer and the most experienced hiker. ↩︎

  2. September in Europe above 2000 elevation meters is tricky. Thunderstorms are common and they may became snow storms. ↩︎

Published in Weekly Notes and tagged


All texts written by . I'd love to hear your feedback. If you've liked this, you may want to subscribe for my monthly newsletter, RSS , or Mastodon. You can always return to home page or read about the site and its privacy handling.