Skip to content

Commit

Permalink
Remove quotes on variables
Browse files Browse the repository at this point in the history
  • Loading branch information
erlonpinheiro authored May 13, 2024
1 parent 215d1cd commit 0bade57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ variable "role_name" {
}

variable "iam_role_policy_document_json" {
type = "string"
type = string

description = <<EOF
Valid JSON Policy String
Expand All @@ -14,7 +14,7 @@ EOF
}

variable "policy_arns" {
type = "list"
type = list
description = "List of policy arns to attach to this role"
default = []
}
Expand Down

0 comments on commit 0bade57

Please sign in to comment.