Role Association Args
data class RoleAssociationArgs(val dbInstanceIdentifier: Output<String>? = null, val featureName: Output<String>? = null, val roleArn: Output<String>? = null) : ConvertibleToJava<RoleAssociationArgs>
Manages an RDS DB Instance association with an IAM Role. Example use cases:
To manage the RDS DB Instance IAM Role for Enhanced Monitoring, see the
aws.rds.Instance
resourcemonitoring_role_arn
argument instead.
Example Usage
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.rds.RoleAssociation;
import com.pulumi.aws.rds.RoleAssociationArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new RoleAssociation("example", RoleAssociationArgs.builder()
.dbInstanceIdentifier(aws_db_instance.example().id())
.featureName("S3_INTEGRATION")
.roleArn(aws_iam_role.example().arn())
.build());
}
}
Content copied to clipboard
Import
aws_db_instance_role_association
can be imported using the DB Instance Identifier and IAM Role ARN separated by a comma (,
), e.g.,
$ pulumi import aws:rds/roleAssociation:RoleAssociation example my-db-instance,arn:aws:iam::123456789012:role/my-role
Content copied to clipboard
Properties
Link copied to clipboard
DB Instance Identifier to associate with the IAM Role.
Link copied to clipboard
Name of the feature for association. This can be found in the AWS documentation relevant to the integration or a full list is available in the SupportedFeatureNames
list returned by AWS CLI rds describe-db-engine-versions.