Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Mar 16, 2021
1 parent ddd16ef commit f6d1159
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
14 changes: 14 additions & 0 deletions ses-domain/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,20 @@ Once DNS has been updated, you can run `tf-apply` on the resource again. It wil
for the TXT record and if so, complete the validation process. Here is an example:
```console
% tf-apply -target=module.ses
** Terraform will perform the following actions:

# module.ses.aws_ses_domain_identity_verification.this[0] will be created
+ resource "aws_ses_domain_identity_verification" "this" {
+ arn = (known after apply)
+ domain = "817869416306.aws.mail.census.gov"
+ id = (known after apply)
}

Plan: 1 to add, 0 to change, 0 to destroy.
.
.
module.ses.aws_ses_domain_identity_verification.this[0]: Creating...
module.ses.aws_ses_domain_identity_verification.this[0]: Creation complete after 1s [id=817869416306.aws.mail.census.gov]
```

# Sample Output
Expand Down
15 changes: 14 additions & 1 deletion ses-domain/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,20 @@
* for the TXT record and if so, complete the validation process. Here is an example:
* ```console
* % tf-apply -target=module.ses
** Terraform will perform the following actions:
*
* # module.ses.aws_ses_domain_identity_verification.this[0] will be created
* + resource "aws_ses_domain_identity_verification" "this" {
* + arn = (known after apply)
* + domain = "817869416306.aws.mail.census.gov"
* + id = (known after apply)
* }
*
* Plan: 1 to add, 0 to change, 0 to destroy.
* .
* .
* module.ses.aws_ses_domain_identity_verification.this[0]: Creating...
* module.ses.aws_ses_domain_identity_verification.this[0]: Creation complete after 1s [id=817869416306.aws.mail.census.gov]
* ```
*
* # Sample Output
Expand Down Expand Up @@ -166,4 +180,3 @@ resource "null_resource" "this_output" {
command = "echo '${local.ses_output}' > setup/ses_dns.md"
}
}

0 comments on commit f6d1159

Please sign in to comment.