terraform-aws-iam-system-user
terraform-aws-iam-system-user copied to clipboard
The argument "region" is required, but was not set.
Describe the Bug
using version 0.23.2 a provider region is required but not set.
my providers have all got region set correctly.
│ Error: Missing required argument
│
│ The argument "region" is required, but was not set.
Expected Behavior
the following runs
module "dynamodb_user" {
source = "cloudposse/iam-system-user/aws"
# Cloud Posse recommends pinning every module to a specific version
version = "0.23.2"
namespace = "production-eu"
stage = "production"
name = "dynamodb"
policy_arns_map = {
}
inline_policies_map = {
dynamodb = data.aws_iam_policy_document.dynamodb_policy.json
}
providers = {
aws = aws.production-eu
}
}
disregard just found
https://github.com/cloudposse/terraform-aws-iam-system-user/releases/tag/0.23.0