Skip to content

Commit

Permalink
change output syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita Dugar committed Sep 24, 2019
1 parent af90cdd commit 2955f2d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ This module has a few dependencies:
Here is an example of how you can use this module in your inventory structure:
```hcl
module "ses" {
source = "git::https://github.com/clouddrove/terraform-aws-ses.git"
source = "git::https://github.com/clouddrove/terraform-aws-ses.git?ref=tags/0.12.1"
domain = "clouddrove.com"
iam_name = "ses-user"
zone_id = "DSSCTGRTHD"
Expand Down
2 changes: 1 addition & 1 deletion README.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ usage : |-
Here is an example of how you can use this module in your inventory structure:
```hcl
module "ses" {
source = "git::https://github.com/clouddrove/terraform-aws-ses.git"
source = "git::https://github.com/clouddrove/terraform-aws-ses.git?ref=tags/0.12.1"
domain = "clouddrove.com"
iam_name = "ses-user"
zone_id = "DSSCTGRTHD"
Expand Down
2 changes: 1 addition & 1 deletion _example/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ provider "aws" {
}

module "ses" {
source = "git::https://github.com/clouddrove/terraform-aws-ses.git"
source = "./../"

domain = "clouddrove.com"
iam_name = "ses-user"
Expand Down
4 changes: 1 addition & 3 deletions outputs.tf
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# Module : DOMAIN IDENTITY
# Description : Terraform module to create domain identity using domain
output "domain_identity_arn" {
value = concat(
aws_ses_domain_identity.default.*.arn
)[0]
value = join("", aws_ses_domain_identity.default.*.arn)
description = "ARN of the SES domain identity."
}

0 comments on commit 2955f2d

Please sign in to comment.