Skip to content

Commit

Permalink
Fix readme (#14)
Browse files Browse the repository at this point in the history
* Fix `README`

* Fix `README`
  • Loading branch information
aknysh authored Mar 30, 2018
1 parent 3ea56ac commit 880393d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ Terraform module to provision an [`RDS Aurora`](https://aws.amazon.com/rds/auror
Basic [example](examples/basic)

```hcl
module "rds_cluster_aurora" {
module "rds_cluster_aurora_postgres" {
source = "git::https://github.com/cloudposse/terraform-aws-rds-cluster.git?ref=master"
engine = "aurora"
engine = "aurora-postgresql"
cluster_size = "2"
namespace = "cp"
stage = "dev"
Expand All @@ -33,8 +33,8 @@ With [cluster parameters](examples/with_cluster_parameters)

```hcl
module "rds_cluster_aurora" {
source = "../../"
engine = "aurora-postgresql"
source = "git::https://github.com/cloudposse/terraform-aws-rds-cluster.git?ref=master"
engine = "aurora"
cluster_size = "2"
namespace = "cp"
stage = "dev"
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ Terraform module to provision an [`RDS Aurora`](https://aws.amazon.com/rds/auror
Basic [example](examples/basic)

```hcl
module "rds_cluster_aurora" {
module "rds_cluster_aurora_postgres" {
source = "git::https://github.com/cloudposse/terraform-aws-rds-cluster.git?ref=master"
engine = "aurora"
engine = "aurora-postgresql"
cluster_size = "2"
namespace = "cp"
stage = "dev"
Expand All @@ -36,8 +36,8 @@ With [cluster parameters](examples/with_cluster_parameters)

```hcl
module "rds_cluster_aurora" {
source = "../../"
engine = "aurora-postgresql"
source = "git::https://github.com/cloudposse/terraform-aws-rds-cluster.git?ref=master"
engine = "aurora"
cluster_size = "2"
namespace = "cp"
stage = "dev"
Expand Down
4 changes: 2 additions & 2 deletions examples/basic/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module "rds_cluster_aurora" {
module "rds_cluster_aurora_postgres" {
source = "../../"
engine = "aurora"
engine = "aurora-postgresql"
cluster_size = "2"
namespace = "cp"
stage = "dev"
Expand Down
2 changes: 1 addition & 1 deletion examples/with_cluster_parameters/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module "rds_cluster_aurora" {
source = "../../"
engine = "aurora-postgresql"
engine = "aurora"
cluster_size = "2"
namespace = "cp"
stage = "dev"
Expand Down

0 comments on commit 880393d

Please sign in to comment.