From 29810b5fba383991b6785db6195179b731ee3e0a Mon Sep 17 00:00:00 2001 From: Dainis Date: Thu, 1 Sep 2016 10:05:35 +0300 Subject: [PATCH] Readme --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1d77e4a6..cfe8cbf4 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,11 @@ resource "zabbix_host" "zabbix1" { ip = "127.0.0.1" main = true }] - groups = ["Linux servers"] + groups = ["Linux servers", "${zabbix_host_group.zabbix.name}"] templates = ["Template ICMP Ping"] } + +resource "zabbix_host_group" "zabbix" { + name = "something" +} ``` \ No newline at end of file