Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ data "aws_iam_policy_document" "ecr_read_and_write_perms" {
count = var.create ? 1 : 0

# The previously created ecs_ecr_read_perms will be merged into this document.
source_json = data.aws_iam_policy_document.ecs_ecr_read_perms[0].json
source_policy_documents = [data.aws_iam_policy_document.ecs_ecr_read_perms[0].json]

statement {
sid = "ECRWrite"
Expand Down
7 changes: 7 additions & 0 deletions versions.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
terraform {
required_version = ">= 1.0"

required_providers {
aws = ">= 5.0"
}
}