Description
Manage AWS Identity Center application grants with Terraform.
Requested Resource(s) and/or Data Source(s)
aws_ssoadmin_application_grant
Potential Terraform Configuration
resource "aws_ssoadmin_application_grant" "example" {
application_arn = aws_ssoadmin_application.example.application_arn
grant_type = "authorization_code"
grant {
authorization_code {
redirect_uris = [""]
}
# only one grant type may be configured within a block, but
# all available types should be supported.
#
# jwt_bearer {}
# refresh_token {}
# token_exchange {}
}
}
References
Would you like to implement a fix?
None
Description
Manage AWS Identity Center application grants with Terraform.
Requested Resource(s) and/or Data Source(s)
aws_ssoadmin_application_grantPotential Terraform Configuration
References
Would you like to implement a fix?
None