We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad97b9a commit 2dd8932Copy full SHA for 2dd8932
README.md
@@ -29,8 +29,9 @@ to match your desired configuration. For example:
29
module "ses" {
30
source = "github.com/codeforamerica/tofu-modules-aws-ses?ref=1.0.0"
31
32
- domain = "my-project.com"
33
- project = "my-project"
+ project = "my-project"
+ environment = "production"
34
+ domain = "my-project.com"
35
allowed_recipients = ["me@example.com"]
36
}
37
```
@@ -46,7 +47,7 @@ For example:
46
47
48
```hcl
49
resource "aws_iam_role_policy_attachment" "web_ses" {
- role = aws_iam_role.web.name
50
+ role = aws_iam_role.web.name
51
policy_arn = module.ses.iam_policy_arn
52
53
0 commit comments