This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
######### Terraform file named main.tf ######## | |
provider "digitalocean" {} | |
module "do-droplet" { | |
source = "git::[email protected]:gilacost/terraform-modules.git//services/do-droplet?ref=v0.0.1" | |
droplet_image_slug = "ghost-18-04" | |
domain_name = "your.domain" | |
ssh_local_key_path = "~/.ssh/id_rsa.pub" | |
region = "fra1" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# vim:fileencoding=utf-8:ft=conf | |
# Fonts {{{ | |
# Font family. You can also specify different fonts for the | |
# bold/italic/bold-italic variants. By default they are derived automatically, | |
# by the OSes font system. Setting them manually is useful for font families | |
# that have many weight variants like Book, Medium, Thick, etc. For example: | |
# font_family Operator Mono Book | |
# bold_font Operator Mono Medium | |
# italic_font Operator Mono Book Italic |