--- layout: "intro" page_title: "Terraform Cluster" sidebar_current: "gettingstarted-join" --- # Terraform Cluster By this point, we've started our first agent and registered and queried one or more services on that agent. This showed how easy it is to use Terraform, but didn't show how this could be extended to a scalable production service discovery infrastructure. On this page, we'll create our first real cluster with multiple members. When starting a Terraform agent, it begins without knowledge of any other node, and is an isolated cluster of one. To learn about other cluster members, the agent must _join_ an existing cluster. To join an existing cluster, only needs to know about a _single_ existing member. After it joins, the agent will gossip with this member and quickly discover the other members in the cluster. A Terraform agent can join any other agent, it doesn't have to be an agent in server mode. ## Starting the Agents To simulate a more realistic cluster, we are using a two node cluster in Vagrant. The Vagrantfile can be found in the demo section of the repo [here](https://github.com/hashicorp/terraform/tree/master/demo/vagrant-cluster). We start the first agent on our first node and also specify a node name. The node name must be unique and is how a machine is uniquely identified. By default it is the hostname of the machine, but we'll manually override it. We are also providing a bind address. This is the address that Terraform listens on, and it *must* be accessible by all other nodes in the cluster. The first node will act as our server in this cluster. We're still not making a cluster of servers. ``` $ terraform agent -server -bootstrap -data-dir /tmp/consul \ -node=agent-one -bind=172.20.20.10 ... ``` Then, in another terminal, start the second agent on the new node. This time, we set the bind address to match the IP of the second node as specified in the Vagrantfile. In production, you will generally want to provide a bind address or interface as well. ``` $ terraform agent -data-dir /tmp/consul -node=agent-two -bind=172.20.20.11 ... ``` At this point, you have two Terraform agents running, one server and one client. The two Terraform agents still don't know anything about each other, and are each part of their own clusters (of one member). You can verify this by running `terraform members` against each agent and noting that only one member is a part of each. ## Joining a Cluster Now, let's tell the first agent to join the second agent by running the following command in a new terminal: ``` $ terraform join 172.20.20.11 Successfully joined cluster by contacting 1 nodes. ``` You should see some log output in each of the agent logs. If you read carefully, you'll see that they received join information. If you run `terraform members` against each agent, you'll see that both agents now know about each other: ``` $ terraform members agent-one 172.20.20.10:8301 alive role=terraform,dc=dc1,vsn=1,vsn_min=1,vsn_max=1,port=8300,bootstrap=1 agent-two 172.20.20.11:8301 alive role=node,dc=dc1,vsn=1,vsn_min=1,vsn_max=1 ```
Remember: To join a cluster, a Terraform agent needs to only learn about one existing member. After joining the cluster, the agents gossip with each other to propagate full membership information.