Skip to content

Instantly share code, notes, and snippets.

@halfb00t
Last active December 29, 2017 09:44
Show Gist options
  • Save halfb00t/38f57c52485310fedbaf4dbd2d65697e to your computer and use it in GitHub Desktop.
Save halfb00t/38f57c52485310fedbaf4dbd2d65697e to your computer and use it in GitHub Desktop.
resource "aws_ecr_repository" "pgbouncer" {
name = "${var.name}"
}
resource "null_resource" "build_pgbouncer_image" {
provisioner "local-exec" {
command = "./docker/build.sh ${aws_ecr_repository.pgbouncer.repository_url} ${var.region}"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment