This module creates an iam_instance_profile
based on provided allowed actions and resources. The module is built for Terraform version 0.12
See also [/examples/default] a complete working example.
module "iam_instance_profile" {
name = var.name
actions = [
"s3:*",
"rds:*",
"logs:*",
]
}
##
The name of the iam_instance_profile: module.iam_instance_profile.name