Skip to content

Commit

Permalink
Add availability zone in sample
Browse files Browse the repository at this point in the history
  • Loading branch information
osaluden committed Jan 9, 2020
1 parent c0749ef commit 364234a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ module "cce2_cluster" {
{
node_name = "test_node1"
node_flavor = "s3.large.2"
availability_zone = "eu-west-0a"
key_pair = "my-key"
root_volume_type = "SATA"
root_volume_size = 40
Expand All @@ -33,6 +34,7 @@ module "cce2_cluster" {
{
node_name = "test_node2"
node_flavor = "s3.large.2"
availability_zone = "eu-west-0a"
key_pair = "my-key"
root_volume_type = "SATA"
root_volume_size = 40
Expand Down Expand Up @@ -66,10 +68,13 @@ inputs = {
cluster_desc = "CCEv2 Cluster xxx"
cluster_flavor = "cce.s1.small"
cluster_version = "v1.13.10-r0"
node_os = "EulerOS 2.5" // Can be "EulerOS 2.5" or "CentOS 7.6"
nodes_list = [
{
node_name = "cce-xxx-1"
node_flavor = "s3.xlarge.2"
availability_zone = "eu-west-0a"
key_pair = "xxx-key"
root_volume_type = "SATA"
root_volume_size = 40
Expand All @@ -79,6 +84,7 @@ inputs = {
{
node_name = "cce-xxx-2"
node_flavor = "s3.xlarge.2"
availability_zone = "eu-west-0a"
key_pair = "xxx-key"
root_volume_type = "SATA"
root_volume_size = 40
Expand All @@ -92,6 +98,7 @@ inputs = {
{
node_name = "cce-xxx-3"
node_flavor = "s3.xlarge.2"
availability_zone = "eu-west-0a"
key_pair = "xxx-key"
root_volume_type = "SATA"
root_volume_size = 40
Expand Down

0 comments on commit 364234a

Please sign in to comment.