giuseppeborgese / terraform-aws-secret-manager-with-rotation

This module will create all the resources to store and rotate a MySQL or Aurora password using the AWS Secrets Manager service.
MIT License
42 stars 52 forks source link

Variable type #11

Closed rbiomete closed 1 year ago

rbiomete commented 1 year ago

Terraform 0.11 + version type="list" (with quote) is deprecated. Need to change like list(string)

variable "subnets_lambda" {
  type = list(string)
  description = "The subnets where the Lambda Function will be run"
}