Skip to content

Commit

Permalink
Update README.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesiarmes committed May 20, 2024
1 parent fc65098 commit cd81bfb
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 7 deletions.
4 changes: 2 additions & 2 deletions aws/backend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ to match your desired configuration. For example:
module "backend" {
source = "github.com/codeforamerica/tofu-modules/aws/backend"
project = "my-project"
project = "my-project"
environment = "dev"
}
```
Expand All @@ -35,7 +35,7 @@ Add the backend configuration to your `main.tf` file:
terraform {
backend "s3" {
bucket = "my-project-dev-tfstate"
key = "my-project.tfstate" # Choose an appropriate key
key = "my-project.tfstate" # Choose an appropriate key
region = "us-east-1"
}
}
Expand Down
6 changes: 3 additions & 3 deletions aws/cloudfront_waf/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ to match your desired configuration. For example, to create a new distribution
module "cloudfront_waf" {
source = "github.com/codeforamerica/tofu-modules/aws/cloudfront_waf"
project = "my-project"
project = "my-project"
environment = "dev"
domain = "my-project.org"
log_bucket = module.logging.bucket
domain = "my-project.org"
log_bucket = module.logging.bucket
}
```

Expand Down
14 changes: 12 additions & 2 deletions aws/fargate_service/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,18 @@ to match your desired configuration. For example:
module "cloudfront_waf" {
source = "github.com/codeforamerica/tofu-modules/aws/fargate_service"
project = "my-project"
environment = "dev"
project = "my-project"
project_short = "my-proj"
environment = "dev"
service = "worker"
service_short = "wrk"
domain = "dev.worker.my-project.org"
vpc_id = module.vpc.vpc_id
private_subnets = module.vpc.private_subnets
public_subnets = module.vpc.public_subnets
logging_key_id = module.logging.kms_key_arn
container_port = 3000
}
```

Expand Down

0 comments on commit cd81bfb

Please sign in to comment.