Skip to content

Commit

Permalink
change readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita Dugar committed Dec 2, 2019
1 parent 8f5f848 commit 214e3d1
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 43 deletions.
44 changes: 22 additions & 22 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<hr>


We eat, drink, sleep and most importantly love **DevOps**. We are working towards stratergies for standardizing architecture while ensuring security for the infrastructure. We are strong believer of the philosophy <b>Bigger problems are always solved by breaking them into smaller manageable problems</b>. Resonating with microservices architecture, it is considered best-practice to run database, cluster, storage in smaller <b>connected yet manageable pieces</b> within the infrastructure.
We eat, drink, sleep and most importantly love **DevOps**. We are working towards strategies for standardizing architecture while ensuring security for the infrastructure. We are strong believer of the philosophy <b>Bigger problems are always solved by breaking them into smaller manageable problems</b>. Resonating with microservices architecture, it is considered best-practice to run database, cluster, storage in smaller <b>connected yet manageable pieces</b> within the infrastructure.

This module is basically combination of [Terraform open source](https://www.terraform.io/) and includes automatation tests and examples. It also helps to create and improve your infrastructure with minimalistic code instead of maintaining the whole infrastructure code yourself.

Expand Down Expand Up @@ -72,31 +72,31 @@ This module has a few dependencies:
Here is an example of how you can use this module in your inventory structure:
```hcl
module "ec2" {
source = "git::https://github.com/clouddrove/terraform-aws-ec2.git?ref=tags/0.12.3"
name = "ec2-instance"
application = "clouddrove"
environment = "test"
label_order = ["environment", "application", "name"] instance_count = 2
ami = "ami-08d658f84a6d84a80"
instance_type = "t2.nano"
key_name = module.keypair.name
monitoring = false
tenancy = "default"
source = "git::https://github.com/clouddrove/terraform-aws-ec2.git?ref=tags/0.12.3"
name = "ec2-instance"
application = "clouddrove"
environment = "test"
label_order = ["environment", "application", "name"] instance_count = 2
ami = "ami-08d658f84a6d84a80"
instance_type = "t2.nano"
key_name = module.keypair.name
monitoring = false
tenancy = "default"
vpc_security_group_ids_list = [module.ssh.security_group_ids, module.http-https.security_group_ids]
subnet_ids = tolist(module.public_subnets.public_subnet_id)
assign_eip_address = true
associate_public_ip_address = true
instance_profile_enabled = true
iam_instance_profile = module.iam-role.name
disk_size = 8
ebs_optimized = false
ebs_volume_enabled = true
ebs_volume_type = "gp2"
ebs_volume_size = 30
user_data = "./_bin/user_data.sh"
instance_tags = { "snapshot" = true }
dns_zone_id = "Z1XJD7SSBKXLC1"
hostname = "ec2"
instance_profile_enabled = true
iam_instance_profile = module.iam-role.name
disk_size = 8
ebs_optimized = false
ebs_volume_enabled = true
ebs_volume_type = "gp2"
ebs_volume_size = 30
user_data = "./_bin/user_data.sh"
instance_tags = { "snapshot" = true }
dns_zone_id = "Z1XJD7SSBKXLC1"
hostname = "ec2"
}
```

Expand Down
42 changes: 21 additions & 21 deletions README.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,30 +36,30 @@ usage : |-
Here is an example of how you can use this module in your inventory structure:
```hcl
module "ec2" {
source = "git::https://github.com/clouddrove/terraform-aws-ec2.git?ref=tags/0.12.3"
name = "ec2-instance"
application = "clouddrove"
environment = "test"
label_order = ["environment", "application", "name"] instance_count = 2
ami = "ami-08d658f84a6d84a80"
instance_type = "t2.nano"
key_name = module.keypair.name
monitoring = false
tenancy = "default"
source = "git::https://github.com/clouddrove/terraform-aws-ec2.git?ref=tags/0.12.3"
name = "ec2-instance"
application = "clouddrove"
environment = "test"
label_order = ["environment", "application", "name"] instance_count = 2
ami = "ami-08d658f84a6d84a80"
instance_type = "t2.nano"
key_name = module.keypair.name
monitoring = false
tenancy = "default"
vpc_security_group_ids_list = [module.ssh.security_group_ids, module.http-https.security_group_ids]
subnet_ids = tolist(module.public_subnets.public_subnet_id)
assign_eip_address = true
associate_public_ip_address = true
instance_profile_enabled = true
iam_instance_profile = module.iam-role.name
disk_size = 8
ebs_optimized = false
ebs_volume_enabled = true
ebs_volume_type = "gp2"
ebs_volume_size = 30
user_data = "./_bin/user_data.sh"
instance_tags = { "snapshot" = true }
dns_zone_id = "Z1XJD7SSBKXLC1"
hostname = "ec2"
instance_profile_enabled = true
iam_instance_profile = module.iam-role.name
disk_size = 8
ebs_optimized = false
ebs_volume_enabled = true
ebs_volume_type = "gp2"
ebs_volume_size = 30
user_data = "./_bin/user_data.sh"
instance_tags = { "snapshot" = true }
dns_zone_id = "Z1XJD7SSBKXLC1"
hostname = "ec2"
}
```

0 comments on commit 214e3d1

Please sign in to comment.