Skip to content

Commit

Permalink
Add support for terraform >= 12
Browse files Browse the repository at this point in the history
Remove quotes from type constraints
```
Terraform 0.11 and earlier required type constraints to be given in quotes, but that form is now deprecated and will be removed in a future version of Terraform. Remove the quotes around "string".
```
  • Loading branch information
rwojnarowski authored May 11, 2021
1 parent b30c6e8 commit 9c91bca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions module/variables.tf
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
variable "function_name" {
type = "string"
type = string
default = "basicAuth"
description = "Lambda function name"
}

variable "basic_auth_credentials" {
type = "map"
type = map
description = "Credentials for Basic Authentication. Pass a map composed of 'user' and 'password'."
}

0 comments on commit 9c91bca

Please sign in to comment.