diff --git a/README.md b/README.md index b540135..3bb4823 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,8 @@ -Terraform provider that manage Ghost apps +# Terraform provider that manages Ghost apps # +TF example: + +``` provider "ghost" { user = "admin" password = "mypass" @@ -11,7 +14,7 @@ resource "ghost_app" "wordpress" { role = "webfront" env = "prod" - region = "eu-west-1" + region = "eu-west-1" instance_type = "t2.micro" log_notifications = ["ghost-devops@domain.com"] @@ -53,4 +56,5 @@ resource "ghost_app" "wordpress" { version = "2.2" name = "apache2" } -} \ No newline at end of file +} +```