From ccfc1ac82fc8d7db48b4c1e37a7e9a0d02635191 Mon Sep 17 00:00:00 2001 From: Aaron Date: Tue, 21 Apr 2020 11:51:06 -0700 Subject: [PATCH] #19 Update variables in readme for v3.0.0 --- README.md | 39 ++++++++++++++++++++++----------------- 1 file changed, 22 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 380b674..b070b6d 100644 --- a/README.md +++ b/README.md @@ -36,23 +36,28 @@ Copy and paste into your Terraform configuration, edit the variables, and run `t ```terraform module "hasura" { - source = "Rayraegah/hasura/aws" - version = "2.X.Y" - region = "YOUR DEPLOYMENT REGION" - domain = "YOUR DOMAIN NAME" - app_subdomain = "YOUR HASURA APP SUBDOMAIN" - hasura_version_tag = "HASURA VERSION TAG FOR DEPLOYMENT" - hasura_admin_secret = "YOUR HASURA ADMIN SECRET" - hasura_jwt_secret_algo = "ALGORITHM FOR JWT VERIFICATION (HMAC or RS256)" - hasura_jwt_secret_key = "YOUR PUBLIC KEY FOR JWT VERIFICATION" - rds_db_name = "YOUR DATABASE NAME" - rds_instance = "YOUR DATABASE INSTANCE SIZE" - rds_username = "YOUR DATABASE USERNAME" - rds_password = "YOUR DATABASE PASSWORD" - multi_az = "ENABLE MULTIPLE AVAILABILITY ZONES" - az_count = "NUMBER OF AVAILABILITY ZONES" - vpc_enable_dns_hostnames = "ENABLE DNS HOSTNAMES" - environment = "ENV VARS FOR ECS TASK" + source = "Rayraegah/hasura/aws" + version = "3.X.Y" + region = "YOUR DEPLOYMENT REGION" + domain = "YOUR DOMAIN NAME" + hasura_subdomain = "HASURA ENDPOINT SUBDOMAIN" + app_subdomain = "YOUR HASURA APP SUBDOMAIN (FOR CORS)" + hasura_version_tag = "HASURA VERSION TAG FOR DEPLOYMENT" + hasura_admin_secret = "YOUR HASURA ADMIN SECRET" + hasura_jwt_secret_algo = "ALGORITHM FOR JWT VERIFICATION (HMAC or RS256)" + hasura_jwt_secret_key = "YOUR PUBLIC KEY FOR JWT VERIFICATION" + hasura_console_enabled = "ENABLE HASURA CONSOLE" + rds_db_name = "YOUR DATABASE NAME" + rds_instance = "YOUR DATABASE INSTANCE SIZE" + rds_username = "YOUR DATABASE USERNAME" + rds_password = "YOUR DATABASE PASSWORD" + multi_az = "ENABLE MULTIPLE AVAILABILITY ZONES" + az_count = "NUMBER OF AVAILABILITY ZONES" + vpc_enable_dns_hostnames = "ENABLE DNS HOSTNAMES" + environment = "ENV VARS FOR ECS TASK" + additional_db_security_groups = "ADDITIONAL GROUPS ASSIGNED TO RDS INSTANCE" + create_iam_service_linked_role = "FALSE IF ROLE IS ALREADY CREATED" + ecs_cluster_name = "YOUR CLUSTER NAME } ```