Amazon RDS
Amazon Relational Database Service (Amazon RDS) is a collection of managed services that makes it simple to set up, operate, and scale databases in the cloud.
Example Usage
resource "apono_integration" "aws-rds-integration" {
name = "Amazon RDS"
type = "aws-rds"
connector_id = "apono-connector-id"
connected_resource_types = ["aws-rds-instance"]
metadata = {
cross_account_role_arn = "<Cross Account Role ARN>"
region = "<Region>"
}
}resource "apono_resource_integration" "aws-rds-integration" {
name = "Amazon RDS"
type = "aws-rds"
connector_id = "apono-connector-id"
connected_resource_types = ["aws-rds-instance"]
integration_config = {
cross_account_role_arn = "<Cross Account Role ARN>"
region = "<Region>"
}
}{
"aws-rds-integration": {
"name": "Amazon RDS",
"type": "aws-rds",
"connector_id": "apono-connector-id",
"connected_resource_types": [
"aws-rds-instance"
],
"integration_config": {
"cross_account_role_arn": "<Cross Account Role ARN>",
"region": "<Region>",
}
}
}Schema
Integration Config
Last updated
Was this helpful?
