Skip to content

Commit

Permalink
Merge pull request #11 from ministryofjustice/versions
Browse files Browse the repository at this point in the history
Fix provider versions and add output description
  • Loading branch information
jakemulley authored Feb 9, 2021
2 parents d494041 + bf7c585 commit f66849f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ output "environment_account_ids" {
for key, account in aws_organizations_account.accounts :
key => account.id
}
description = "Map of account keys and their IDs (e.g. { account_name => 1234567890 })"
}
7 changes: 6 additions & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ terraform {
required_version = ">= 0.13"
required_providers {
aws = {
source = "hashicorp/aws"
source = "hashicorp/aws"
version = ">= 3.20.0"
}
random = {
source = "hashicorp/random"
version = ">= 3.0.0"
}
}
}

0 comments on commit f66849f

Please sign in to comment.