Skip to content

Instantly share code, notes, and snippets.

@jnahelou
Created October 16, 2020 22:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jnahelou/5ffa7765ed7e3fbbe7614099eaf3a23b to your computer and use it in GitHub Desktop.
Save jnahelou/5ffa7765ed7e3fbbe7614099eaf3a23b to your computer and use it in GitHub Desktop.
hello provider
terraform {
required_providers {
hello = {
source = "registry1.jnahelou.net/jnahelou/hello"
}
}
}
provider "hello" {
nickname = "jnahelou"
}
resource "hello_file" "foo" {
path = "/tmp/foo"
name = "world"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment