Skip to content

Instantly share code, notes, and snippets.

@maxenglander
Last active October 29, 2015 19:16
Show Gist options
  • Save maxenglander/9af9811f6b72f541fa50 to your computer and use it in GitHub Desktop.
Save maxenglander/9af9811f6b72f541fa50 to your computer and use it in GitHub Desktop.
{
"resource": {
"consul_node": {
"my_node": {
"name": "my_node",
"address": "10.0.1.15"
},
},
"consul_service": {
"rds": {
"agent": true,
"address": "rds.example.com",
"id": "rds",
"port": 3306
},
"google": {
"node_id": "${consul_node.my_node.id}",
"address": "www.google.com",
"id": "google",
"port": 80
}
},
"consul_check": {
"google_check": {
"node_id": "${consul_node.my_node.id}",
"id": "google_check",
"status": "passing"
},
"rds_check": {
"agent": true,
"script": "/usr/bin/check_rds.sh"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment