diff --git a/ses-domain/README.md b/ses-domain/README.md index 14d5170..6aaa076 100644 --- a/ses-domain/README.md +++ b/ses-domain/README.md @@ -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 diff --git a/ses-domain/main.tf b/ses-domain/main.tf index c27b2a6..3a2484c 100644 --- a/ses-domain/main.tf +++ b/ses-domain/main.tf @@ -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 @@ -166,4 +180,3 @@ resource "null_resource" "this_output" { command = "echo '${local.ses_output}' > setup/ses_dns.md" } } -