diff --git a/beanstalk_web_env/README.md b/beanstalk_web_env/README.md index 4df4023..81f42fe 100644 --- a/beanstalk_web_env/README.md +++ b/beanstalk_web_env/README.md @@ -1,6 +1,7 @@ -# beanstalk_env +# beanstalk_web_env -Creates an AWS Elastic Beanstalk environment. +Creates an AWS Elastic Beanstalk web environment with load balancer and auto +scaling group. ## Usage @@ -13,7 +14,7 @@ module "myapp" { } module "myapp_prod_web" { - source = "github.com/openoakland/terraform-modules//beanstalk_env?ref=v2.0.0" + source = "github.com/openoakland/terraform-modules//beanstalk_web_env?ref=v2.0.0" app_name = "myapp" app_instance = "production" dns_zone_name = "myapp.aws.example.com" @@ -27,9 +28,9 @@ module "myapp_prod_web" { ### Variables -See [beanstalk_env/variables.tf](./variables.tf). +See [beanstalk_web_env/variables.tf](./variables.tf). ### Outputs -See [beanstalk_env/outputs.tf](./outputs.tf). +See [beanstalk_web_env/outputs.tf](./outputs.tf). diff --git a/test.tf b/test.tf index 4a892f9..44ccc79 100644 --- a/test.tf +++ b/test.tf @@ -15,7 +15,7 @@ module "postgresdb_test" { } module "beanstalk_env_test" { - source = "./beanstalk_env" + source = "./beanstalk_web_env" app_instance = "test" app_name = "terraform-modules"