Skip to content

Instantly share code, notes, and snippets.

dhoppe in ~ at imac
➜ brew install hcloud
dhoppe in ~ at imac took 7s
➜ hcloud context create demo
dhoppe in ~ at imac
➜ hcloud network create --ip-range 10.0.0.0/16 --label customer=dhoppe --name private
dhoppe in ~ at imac

Keybase proof

I hereby claim:

  • I am dhoppeit on github.
  • I am dhoppeit (https://keybase.io/dhoppeit) on keybase.
  • I have a public key ASBN24Leq2FjQAxBkPqpqm-gUNx1TqE-DvZzQ06UMxA9owo

To claim this, I am signing this object:

@dhoppeIT
dhoppeIT / Vagrantfile
Created February 9, 2015 17:07
Consul - Erkennen und Konfigurieren von Services
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# All Vagrant configuration is done here. The most common configuration
# options are documented and commented below. For a complete reference,
# please see the online documentation at vagrantup.com.
@dhoppeIT
dhoppeIT / example.tf
Created February 2, 2015 13:55
Terraform - Infrastruktur als Code
provider "aws" {
access_key = "${var.access_key}"
secret_key = "${var.secret_key}"
region = "${var.region}"
}
resource "aws_elb" "lb" {
name = "elb-web"
availability_zones = ["${aws_instance.web.*.availability_zone}"]