-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
jordzn
committed
Apr 18, 2016
1 parent
e1f0d24
commit 0414058
Showing
51 changed files
with
277 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Terraform AWS | ||
|
||
## Terraform Commands | ||
|
||
* [`terraform get`](https://www.terraform.io/docs/commands/get.html) | ||
* [`terraform plan`](https://www.terraform.io/docs/commands/plan.html) | ||
* [`terraform apply`](https://www.terraform.io/docs/commands/apply.html) | ||
* [`terraform destroy`](https://www.terraform.io/docs/commands/destroy.html) | ||
|
||
## AWS Basic Compute Demo | ||
|
||
This basic compute demo will consist of the orchestration of blank t2.micro (free tier) EC2 instances into AWS. | ||
|
||
### Pre-requisites | ||
|
||
- It is assumed that this demo is being ran from a UNIX based machine | ||
- An AWS account [-Sign up here-](https://aws.amazon.com/premiumsupport/signup/) | ||
- AWS SSH key-pair created and private key stored locally (this is used as the SSH key placed onto each new instance by Terraform, this key is then used for SSH access after creation is complete) | ||
- This repository cloned locally (install Git [here](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git)) | ||
- Terraform installed (install it [here](https://www.terraform.io/downloads.html)) | ||
|
||
### Instructions | ||
|
||
1. open 'terraform.tfvars' and enter a value for variable 'owner' and 'ssh_key_name' (the name of the key associated with your AWS account), and save | ||
2. run command 'export AWS_ACCESS_KEY_ID={your_access_key}' | ||
3. run command 'export AWS_SECRET_ACCESS_KEY={your_secret_key}' | ||
4. run command 'export AWS_DEFAULT_REGION={your_preferred_region}' | ||
5. run command 'terraform get' | ||
6. run command 'terraform plan -var-file=./terraform.tfvars' | ||
7. run command 'terraform apply -state=./terraform.tfstate -var-file=./terraform.tfvars' | ||
|
||
To destroy the infrastructure you have built, run command 'terraform destroy -state=./terraform.tfstate -var-file=./terraform.tfvars' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# outputs produced at the end of a terraform apply: id of the instances, id of | ||
# security group(s) they are part of | ||
# outputs produced at the end of a terraform apply: e.g. id and ip of the instances | ||
output "demo_node_id" { value = "${module.demo-node.demo_node_id}" } | ||
output "demo_node_ip" { value = "${module.demo-node.demo_node_ip}" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
# General Variables # | ||
ami = "ami-8b8c57f8" | ||
#owner = "" | ||
#owner = "" # uncomment this variable and provide an identifying value for tagging | ||
|
||
# Demo Node # | ||
demo_node_instance_type = "t2.micro" | ||
demo_node_instance_count = "1" | ||
#demo_node_ssh_key_name = "" | ||
#demo_node_ssh_key_name = "" # uncomment this variable and provide the name of your AWS key-pair |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Code & Demos to come soon: | ||
|
||
* Release 3: Networking Infrastructure in AWS, Microsoft Azure, Google Cloud & Rackspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Terraform AWS | ||
|
||
## Terraform Commands | ||
|
||
* [`terraform get`](https://www.terraform.io/docs/commands/get.html) | ||
* [`terraform plan`](https://www.terraform.io/docs/commands/plan.html) | ||
* [`terraform apply`](https://www.terraform.io/docs/commands/apply.html) | ||
* [`terraform destroy`](https://www.terraform.io/docs/commands/destroy.html) | ||
|
||
## AWS Basic Compute Demo | ||
|
||
This basic compute demo will consist of the orchestration of blank t2.micro (free tier) EC2 instances into AWS. | ||
|
||
### Pre-requisites | ||
|
||
- It is assumed that this demo is being ran from a UNIX based machine | ||
- An AWS account [-Sign up here-](https://aws.amazon.com/premiumsupport/signup/) | ||
- AWS SSH key-pair created and private key stored locally (this is used as the SSH key placed onto each new instance by Terraform, this key is then used for SSH access after creation is complete) | ||
- This repository cloned locally (install Git [here](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git)) | ||
- Terraform installed (install it [here](https://www.terraform.io/downloads.html)) | ||
|
||
### Instructions | ||
|
||
1. open 'terraform.tfvars' and enter a value for variable 'owner' and 'ssh_key_name' (the name of the key associated with your AWS account), and save | ||
2. run command 'export AWS_ACCESS_KEY_ID={your_access_key}' | ||
3. run command 'export AWS_SECRET_ACCESS_KEY={your_secret_key}' | ||
4. run command 'export AWS_DEFAULT_REGION={your_preferred_region}' | ||
5. run command 'terraform get' | ||
6. run command 'terraform plan -var-file=./terraform.tfvars' | ||
7. run command 'terraform apply -state=./terraform.tfstate -var-file=./terraform.tfvars' | ||
|
||
To destroy the infrastructure you have built, run command 'terraform destroy -state=./terraform.tfstate -var-file=./terraform.tfvars' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# outputs produced at the end of a terraform apply: id of the instances, id of | ||
# security group(s) they are part of | ||
# outputs produced at the end of a terraform apply: e.g. id and ip of the instances | ||
output "demo_node_id" { value = "${module.demo-node.demo_node_id}" } | ||
output "demo_node_ip" { value = "${module.demo-node.demo_node_ip}" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
# General Variables # | ||
ami = "ami-8b8c57f8" | ||
#owner = "" | ||
#owner = "" # uncomment this variable and provide an identifying value for tagging | ||
|
||
# Demo Node # | ||
demo_node_instance_type = "t2.micro" | ||
demo_node_instance_count = "1" | ||
#demo_node_ssh_key_name = "" | ||
#demo_node_ssh_key_name = "" # uncomment this variable and provide the name of your AWS key-pair |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Code & Demos to come soon: | ||
|
||
* Release 3: Networking Infrastructure in AWS, Microsoft Azure, Google Cloud & Rackspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Terraform AWS | ||
|
||
## Terraform Commands | ||
|
||
* [`terraform get`](https://www.terraform.io/docs/commands/get.html) | ||
* [`terraform plan`](https://www.terraform.io/docs/commands/plan.html) | ||
* [`terraform apply`](https://www.terraform.io/docs/commands/apply.html) | ||
* [`terraform destroy`](https://www.terraform.io/docs/commands/destroy.html) | ||
|
||
## AWS Basic Compute Demo | ||
|
||
This basic compute demo will consist of the orchestration of blank t2.micro (free tier) EC2 instances into AWS. | ||
|
||
### Pre-requisites | ||
|
||
- It is assumed that this demo is being ran from a UNIX based machine | ||
- An AWS account [-Sign up here-](https://aws.amazon.com/premiumsupport/signup/) | ||
- AWS SSH key-pair created and private key stored locally (this is used as the SSH key placed onto each new instance by Terraform, this key is then used for SSH access after creation is complete) | ||
- This repository cloned locally (install Git [here](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git)) | ||
- Terraform installed (install it [here](https://www.terraform.io/downloads.html)) | ||
|
||
### Instructions | ||
|
||
1. open 'terraform.tfvars' and enter a value for variable 'owner' and 'ssh_key_name' (the name of the key associated with your AWS account), and save | ||
2. run command 'export AWS_ACCESS_KEY_ID={your_access_key}' | ||
3. run command 'export AWS_SECRET_ACCESS_KEY={your_secret_key}' | ||
4. run command 'export AWS_DEFAULT_REGION={your_preferred_region}' | ||
5. run command 'terraform get' | ||
6. run command 'terraform plan -var-file=./terraform.tfvars' | ||
7. run command 'terraform apply -state=./terraform.tfstate -var-file=./terraform.tfvars' | ||
|
||
To destroy the infrastructure you have built, run command 'terraform destroy -state=./terraform.tfstate -var-file=./terraform.tfvars' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# outputs produced at the end of a terraform apply: id of the instances, id of | ||
# security group(s) they are part of | ||
# outputs produced at the end of a terraform apply: e.g. id and ip of the instances | ||
output "demo_node_id" { value = "${module.demo-node.demo_node_id}" } | ||
output "demo_node_ip" { value = "${module.demo-node.demo_node_ip}" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
# General Variables # | ||
ami = "ami-8b8c57f8" | ||
#owner = "" | ||
#owner = "" # uncomment this variable and provide an identifying value for tagging | ||
|
||
# Demo Node # | ||
demo_node_instance_type = "t2.micro" | ||
demo_node_instance_count = "1" | ||
#demo_node_ssh_key_name = "" | ||
#demo_node_ssh_key_name = "" # uncomment this variable and provide the name of your AWS key-pair |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Code & Demos to come soon: | ||
|
||
* Release 3: Networking Infrastructure in AWS, Microsoft Azure, Google Cloud & Rackspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Terraform AWS | ||
|
||
## Terraform Commands | ||
|
||
* [`terraform get`](https://www.terraform.io/docs/commands/get.html) | ||
* [`terraform plan`](https://www.terraform.io/docs/commands/plan.html) | ||
* [`terraform apply`](https://www.terraform.io/docs/commands/apply.html) | ||
* [`terraform destroy`](https://www.terraform.io/docs/commands/destroy.html) | ||
|
||
## AWS Basic Compute Demo | ||
|
||
This basic compute demo will consist of the orchestration of blank t2.micro (free tier) EC2 instances into AWS. | ||
|
||
### Pre-requisites | ||
|
||
- It is assumed that this demo is being ran from a UNIX based machine | ||
- An AWS account [-Sign up here-](https://aws.amazon.com/premiumsupport/signup/) | ||
- AWS SSH key-pair created and private key stored locally (this is used as the SSH key placed onto each new instance by Terraform, this key is then used for SSH access after creation is complete) | ||
- This repository cloned locally (install Git [here](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git)) | ||
- Terraform installed (install it [here](https://www.terraform.io/downloads.html)) | ||
|
||
### Instructions | ||
|
||
1. open 'terraform.tfvars' and enter a value for variable 'owner' and 'ssh_key_name' (the name of the key associated with your AWS account), and save | ||
2. run command 'export AWS_ACCESS_KEY_ID={your_access_key}' | ||
3. run command 'export AWS_SECRET_ACCESS_KEY={your_secret_key}' | ||
4. run command 'export AWS_DEFAULT_REGION={your_preferred_region}' | ||
5. run command 'terraform get' | ||
6. run command 'terraform plan -var-file=./terraform.tfvars' | ||
7. run command 'terraform apply -state=./terraform.tfstate -var-file=./terraform.tfvars' | ||
|
||
To destroy the infrastructure you have built, run command 'terraform destroy -state=./terraform.tfstate -var-file=./terraform.tfvars' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# outputs produced at the end of a terraform apply: id of the instances, id of | ||
# security group(s) they are part of | ||
# outputs produced at the end of a terraform apply: e.g. id and ip of the instances | ||
output "demo_node_id" { value = "${module.demo-node.demo_node_id}" } | ||
output "demo_node_ip" { value = "${module.demo-node.demo_node_ip}" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
# General Variables # | ||
ami = "ami-8b8c57f8" | ||
#owner = "" | ||
#owner = "" # uncomment this variable and provide an identifying value for tagging | ||
|
||
# Demo Node # | ||
demo_node_instance_type = "t2.micro" | ||
demo_node_instance_count = "1" | ||
#demo_node_ssh_key_name = "" | ||
#demo_node_ssh_key_name = "" # uncomment this variable and provide the name of your AWS key-pair |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Code & Demos to come soon: | ||
|
||
* Release 3: Networking Infrastructure in AWS, Microsoft Azure, Google Cloud & Rackspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
# outputs produced at the end of a terraform apply: id of the instances, id of | ||
# security group(s) they are part of | ||
output "demo_node_instance_id" { value = "${join(",", aws_instance.demo-node.*.id)}" } | ||
output "demo_node_sg_id" { value = "${aws_security_group.demo-sg.id}" } | ||
# outputs produced at the end of a terraform apply: e.g. the id and ip of an instance | ||
output "demo_node_id" { value = "${join(",", aws_instance.demo-node.*.id)}" } | ||
output "demo_node_sg_id" { value = "${join(",", aws_instance.demo-node.*.public_ip)}" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
COMING SOON! | ||
# Code & Demos to come soon: | ||
|
||
* Release 2: Basic Compute in Microsoft Azure, Google Cloud & Rackspace | ||
* Release 3: Networking Infrastructure in AWS, Microsoft Azure, Google Cloud & Rackspace | ||
* Release 4: Terraform Provisioning with Puppet, Chef & Ansible |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Code & Demos to come soon: | ||
|
||
* Release 2: Basic Compute in Microsoft Azure, Google Cloud & Rackspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Code & Demos to come soon: | ||
|
||
* Release 3: Networking Infrastructure in AWS, Microsoft Azure, Google Cloud & Rackspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Code & Demos to come soon: | ||
|
||
* Release 2: Basic Compute in Microsoft Azure, Google Cloud & Rackspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Code & Demos to come soon: | ||
|
||
* Release 3: Networking Infrastructure in AWS, Microsoft Azure, Google Cloud & Rackspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Code & Demos to come soon: | ||
|
||
* Release 2: Basic Compute in Microsoft Azure, Google Cloud & Rackspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Code & Demos to come soon: | ||
|
||
* Release 3: Networking Infrastructure in AWS, Microsoft Azure, Google Cloud & Rackspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Code & Demos to come soon: | ||
|
||
* Release 2: Basic Compute in Microsoft Azure, Google Cloud & Rackspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Code & Demos to come soon: | ||
|
||
* Release 3: Networking Infrastructure in AWS, Microsoft Azure, Google Cloud & Rackspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
COMING SOON! | ||
# Code & Demos to come soon: | ||
|
||
* Release 2: Basic Compute in Microsoft Azure, Google Cloud & Rackspace | ||
* Release 3: Networking Infrastructure in AWS, Microsoft Azure, Google Cloud & Rackspace | ||
* Release 4: Terraform Provisioning with Puppet, Chef & Ansible |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
COMING SOON! | ||
# Code & Demos to come soon: | ||
|
||
* Release 2: Basic Compute in Microsoft Azure, Google Cloud & Rackspace | ||
* Release 3: Networking Infrastructure in AWS, Microsoft Azure, Google Cloud & Rackspace | ||
* Release 4: Terraform Provisioning with Puppet, Chef & Ansible |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Code & Demos to come soon: | ||
|
||
* Release 2: Basic Compute in Microsoft Azure, Google Cloud & Rackspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Code & Demos to come soon: | ||
|
||
* Release 3: Networking Infrastructure in AWS, Microsoft Azure, Google Cloud & Rackspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Code & Demos to come soon: | ||
|
||
* Release 2: Basic Compute in Microsoft Azure, Google Cloud & Rackspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Code & Demos to come soon: | ||
|
||
* Release 3: Networking Infrastructure in AWS, Microsoft Azure, Google Cloud & Rackspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Code & Demos to come soon: | ||
|
||
* Release 2: Basic Compute in Microsoft Azure, Google Cloud & Rackspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Code & Demos to come soon: | ||
|
||
* Release 3: Networking Infrastructure in AWS, Microsoft Azure, Google Cloud & Rackspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Code & Demos to come soon: | ||
|
||
* Release 2: Basic Compute in Microsoft Azure, Google Cloud & Rackspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Code & Demos to come soon: | ||
|
||
* Release 3: Networking Infrastructure in AWS, Microsoft Azure, Google Cloud & Rackspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
COMING SOON! | ||
# Code & Demos to come soon: | ||
|
||
* Release 2: Basic Compute in Microsoft Azure, Google Cloud & Rackspace | ||
* Release 3: Networking Infrastructure in AWS, Microsoft Azure, Google Cloud & Rackspace | ||
* Release 4: Terraform Provisioning with Puppet, Chef & Ansible |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
COMING SOON! | ||
# Code & Demos to come soon: | ||
|
||
* Release 2: Basic Compute in Microsoft Azure, Google Cloud & Rackspace | ||
* Release 3: Networking Infrastructure in AWS, Microsoft Azure, Google Cloud & Rackspace | ||
* Release 4: Terraform Provisioning with Puppet, Chef & Ansible |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Code & Demos to come soon: | ||
|
||
* Release 2: Basic Compute in Microsoft Azure, Google Cloud & Rackspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Code & Demos to come soon: | ||
|
||
* Release 3: Networking Infrastructure in AWS, Microsoft Azure, Google Cloud & Rackspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Code & Demos to come soon: | ||
|
||
* Release 2: Basic Compute in Microsoft Azure, Google Cloud & Rackspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Code & Demos to come soon: | ||
|
||
* Release 3: Networking Infrastructure in AWS, Microsoft Azure, Google Cloud & Rackspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Code & Demos to come soon: | ||
|
||
* Release 2: Basic Compute in Microsoft Azure, Google Cloud & Rackspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Code & Demos to come soon: | ||
|
||
* Release 3: Networking Infrastructure in AWS, Microsoft Azure, Google Cloud & Rackspace |
Oops, something went wrong.