Skip to content
This repository has been archived by the owner on Jun 27, 2024. It is now read-only.

Commit

Permalink
Merge pull request #2 from ministryofjustice/versions
Browse files Browse the repository at this point in the history
Fix versions, variables and add outputs.tf file
  • Loading branch information
jakemulley authored Feb 9, 2021
2 parents 5d04b68 + fb001b5 commit dde2508
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion outputs.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
output "role" {
value = aws_iam_role.default
value = aws_iam_role.default
description = "Direct aws_iam_role resource with all attributes"
}
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
variable "buckets" {
type = list
type = list(any)
description = "A list of bucket ARNs to allow access to"
}

variable "tags" {
type = map
type = map(any)
description = "Tags to apply to resources, where applicable"
}
3 changes: 2 additions & 1 deletion versions.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
source = "hashicorp/aws"
version = ">= 3.20.0"
}
}
required_version = ">= 0.13"
Expand Down

0 comments on commit dde2508

Please sign in to comment.