I hereby claim:
- I am codyhazelwood on github.
- I am codyhazelwood (https://keybase.io/codyhazelwood) on keybase.
- I have a public key ASCdqph-d1RSNtT8EcIDH42nt8nObtA81kdieOaGk76C2Ao
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| /** | |
| * Tier 1 – Dotted | |
| */ | |
| * { outline: 2px dotted purple; } | |
| * * { outline: 2px dotted blue; } | |
| * * * { outline: 2px dotted green; } | |
| * * * * { outline: 2px dotted yellow; } | |
| * * * * * { outline: 2px dotted orange; } | |
| * * * * * * { outline: 2px dotted red; } | 
I largely followed Florin's blog post, but have a few notes to add regarding issues I encountered:
gpg-agent only automatically starts when gpg is used; for ssh, you'll need to ensure it's running.list command inside gpg --edit-card, look for the Key attributes line to see what is currently selected. On my YubiKey 4, it defaulted to 2048 bits for all keys:Key attributes ...: rsa2048 rsa2048 rsa2048
| resource "aws_ecs_service" "service" { | |
| name = "${var.app}" | |
| cluster = "${var.cluster}" | |
| # Use task revision in AWS if it is greater than task revision in tfstate | |
| # Prevents rolling back revision when it has been incremented by CI | |
| task_definition = "${aws_ecs_task_definition.app.family}:${data.external.task_definition.result["task_definition_revision"] > aws_ecs_task_definition.app.revision ? data.external.task_definition.result["task_definition_revision"] : aws_ecs_task_definition.app.revision }" | |
| desired_count = "${var.task_count}" | |
| depends_on = [ | |
| "aws_ecs_task_definition.app" |