mirror of
https://github.com/terraform-aws-modules/terraform-aws-rds-proxy.git
synced 2025-12-17 00:11:11 +00:00
fix: Correct service principal to rds.amazonaws.com since ints universal across partitions.
This commit is contained in:
parent
99df7e3913
commit
c93848c9b6
1 changed files with 1 additions and 1 deletions
2
main.tf
2
main.tf
|
|
@ -111,7 +111,7 @@ data "aws_iam_policy_document" "assume_role" {
|
||||||
|
|
||||||
principals {
|
principals {
|
||||||
type = "Service"
|
type = "Service"
|
||||||
identifiers = ["rds.${data.aws_partition.current.dns_suffix}"]
|
identifiers = ["rds.amazonaws.com"]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue