Skip to content

Commit 0414058

Browse files
author
jordzn
committed
updated coming soon READMEs
1 parent e1f0d24 commit 0414058

File tree

51 files changed

+277
-26
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+277
-26
lines changed
+32

aws/environments/dev/compute/demo_nodes.tf

+2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,12 @@ variable demo_node_ssh_key_name { default = "" }
99
module "demo-node" {
1010
source = "../../../modules/compute/nodes/demo_node"
1111

12+
# instance configuration
1213
ami = "${var.ami}"
1314
instance_type = "${var.demo_node_instance_type}"
1415
count = "${var.demo_node_instance_count}"
1516
key_name = "${var.demo_node_ssh_key_name}"
1617

18+
# tagging
1719
owner = "${var.owner}"
1820
}
+3-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
# outputs produced at the end of a terraform apply: id of the instances, id of
2-
# security group(s) they are part of
1+
# outputs produced at the end of a terraform apply: e.g. id and ip of the instances
2+
output "demo_node_id" { value = "${module.demo-node.demo_node_id}" }
3+
output "demo_node_ip" { value = "${module.demo-node.demo_node_ip}" }
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1+
# General Variables #
12
ami = "ami-8b8c57f8"
2-
#owner = ""
3+
#owner = "" # uncomment this variable and provide an identifying value for tagging
34

45
# Demo Node #
56
demo_node_instance_type = "t2.micro"
67
demo_node_instance_count = "1"
7-
#demo_node_ssh_key_name = ""
8+
#demo_node_ssh_key_name = "" # uncomment this variable and provide the name of your AWS key-pair
+32

aws/environments/preprod/compute/demo_nodes.tf

+2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,12 @@ variable demo_node_ssh_key_name { default = "" }
99
module "demo-node" {
1010
source = "../../../modules/compute/nodes/demo_node"
1111

12+
# instance configuration
1213
ami = "${var.ami}"
1314
instance_type = "${var.demo_node_instance_type}"
1415
count = "${var.demo_node_instance_count}"
1516
key_name = "${var.demo_node_ssh_key_name}"
1617

18+
# tagging
1719
owner = "${var.owner}"
1820
}
+3-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
# outputs produced at the end of a terraform apply: id of the instances, id of
2-
# security group(s) they are part of
1+
# outputs produced at the end of a terraform apply: e.g. id and ip of the instances
2+
output "demo_node_id" { value = "${module.demo-node.demo_node_id}" }
3+
output "demo_node_ip" { value = "${module.demo-node.demo_node_ip}" }
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1+
# General Variables #
12
ami = "ami-8b8c57f8"
2-
#owner = ""
3+
#owner = "" # uncomment this variable and provide an identifying value for tagging
34

45
# Demo Node #
56
demo_node_instance_type = "t2.micro"
67
demo_node_instance_count = "1"
7-
#demo_node_ssh_key_name = ""
8+
#demo_node_ssh_key_name = "" # uncomment this variable and provide the name of your AWS key-pair
+32

aws/environments/prod/compute/demo_nodes.tf

+2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,12 @@ variable demo_node_ssh_key_name { default = "" }
99
module "demo-node" {
1010
source = "../../../modules/compute/nodes/demo_node"
1111

12+
# instance configuration
1213
ami = "${var.ami}"
1314
instance_type = "${var.demo_node_instance_type}"
1415
count = "${var.demo_node_instance_count}"
1516
key_name = "${var.demo_node_ssh_key_name}"
1617

18+
# tagging
1719
owner = "${var.owner}"
1820
}
+3-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
# outputs produced at the end of a terraform apply: id of the instances, id of
2-
# security group(s) they are part of
1+
# outputs produced at the end of a terraform apply: e.g. id and ip of the instances
2+
output "demo_node_id" { value = "${module.demo-node.demo_node_id}" }
3+
output "demo_node_ip" { value = "${module.demo-node.demo_node_ip}" }
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1+
# General Variables #
12
ami = "ami-8b8c57f8"
2-
#owner = ""
3+
#owner = "" # uncomment this variable and provide an identifying value for tagging
34

45
# Demo Node #
56
demo_node_instance_type = "t2.micro"
67
demo_node_instance_count = "1"
7-
#demo_node_ssh_key_name = ""
8+
#demo_node_ssh_key_name = "" # uncomment this variable and provide the name of your AWS key-pair
+32

aws/environments/test/compute/demo_nodes.tf

+2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,12 @@ variable demo_node_ssh_key_name { default = "" }
99
module "demo-node" {
1010
source = "../../../modules/compute/nodes/demo_node"
1111

12+
# instance configuration
1213
ami = "${var.ami}"
1314
instance_type = "${var.demo_node_instance_type}"
1415
count = "${var.demo_node_instance_count}"
1516
key_name = "${var.demo_node_ssh_key_name}"
1617

18+
# tagging
1719
owner = "${var.owner}"
1820
}
+3-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
# outputs produced at the end of a terraform apply: id of the instances, id of
2-
# security group(s) they are part of
1+
# outputs produced at the end of a terraform apply: e.g. id and ip of the instances
2+
output "demo_node_id" { value = "${module.demo-node.demo_node_id}" }
3+
output "demo_node_ip" { value = "${module.demo-node.demo_node_ip}" }
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1+
# General Variables #
12
ami = "ami-8b8c57f8"
2-
#owner = ""
3+
#owner = "" # uncomment this variable and provide an identifying value for tagging
34

45
# Demo Node #
56
demo_node_instance_type = "t2.micro"
67
demo_node_instance_count = "1"
7-
#demo_node_ssh_key_name = ""
8+
#demo_node_ssh_key_name = "" # uncomment this variable and provide the name of your AWS key-pair
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# outputs produced at the end of a terraform apply: id of the instances, id of
2-
# security group(s) they are part of
3-
output "demo_node_instance_id" { value = "${join(",", aws_instance.demo-node.*.id)}" }
4-
output "demo_node_sg_id" { value = "${aws_security_group.demo-sg.id}" }
1+
# outputs produced at the end of a terraform apply: e.g. the id and ip of an instance
2+
output "demo_node_id" { value = "${join(",", aws_instance.demo-node.*.id)}" }
3+
output "demo_node_sg_id" { value = "${join(",", aws_instance.demo-node.*.public_ip)}" }

azure/README.md

+5-1
+3

azure/modules/README.md

+5-1

gc/README.md

+5-1

gc/environments/dev/compute/README.md

+3
+3
+3
+3

gc/modules/README.md

+5-1

rackspace/README.md

+5-1

0 commit comments

Comments
 (0)