generated from cloudposse/terraform-example-module
-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Terraform cloudposse/label/null to v0.25.0 (#3)
* Update Terraform cloudposse/label/null to v0.25.0 * Get terratest to pass Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: cloudpossebot <11232728+cloudpossebot@users.noreply.github.com> Co-authored-by: nitrocode <nitrocode@users.noreply.github.com>
- Loading branch information
1 parent
5b5b33d
commit e045c65
Showing
10 changed files
with
44 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,24 @@ | ||
output "id" { | ||
description = "ID of the created example" | ||
value = module.example.id | ||
output "account_id" { | ||
description = "The ID of the Macie account." | ||
value = module.macie.account_id | ||
} | ||
|
||
output "example" { | ||
description = "Output \"example\" from example module" | ||
value = module.example.example | ||
output "account_service_role_arn" { | ||
description = "The service role ARN of the Macie account." | ||
value = module.macie.account_service_role_arn | ||
} | ||
|
||
output "random" { | ||
description = "Output \"random\" from example module" | ||
value = module.example.random | ||
output "org_admin_account_ids" { | ||
description = "List of IDs of the Macie organization admin accounts." | ||
value = module.macie.org_admin_account_ids | ||
} | ||
|
||
output "aws_account_to_org_admin_account_ids" { | ||
description = "Map of the AWS account IDs to Macie organization admin account IDs" | ||
value = module.macie.aws_account_to_org_admin_account_ids | ||
} | ||
|
||
output "member_accounts" { | ||
description = "List of AWS account IDs the Macie Admin is managing" | ||
value = module.macie.member_accounts | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
variable "example" { | ||
variable "region" { | ||
type = string | ||
description = "The value which will be passed to the example module" | ||
description = "AWS Region" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,15 @@ | ||
terraform { | ||
required_version = ">= 0.12.26" | ||
required_version = ">= 0.15.0" | ||
|
||
required_providers { | ||
local = { | ||
source = "hashicorp/local" | ||
version = ">= 1.2" | ||
# Update these to reflect the actual requirements of your module | ||
aws = { | ||
source = "hashicorp/aws" | ||
version = ">= 2.0" | ||
configuration_aliases = [ | ||
aws.admin, | ||
aws | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters