Amazon Account
Integrate a specific account and its resources
Example Usage
resource "apono_integration" "aws-account-integration" {
name = "Amazon Account"
type = "aws-account"
connector_id = "apono-connector-id"
connected_resource_types = ["aws-account-s3-bucket"]
metadata = {
region = "<Region>"
profile = "<AWS Profile Name (Optional)>"
credentials_rotation_period_in_days = "<Credentials rotation period (in days)>"
credentials_cleanup_period_in_days = "<User cleanup after access is revoked (in days)>"
enable_audit = "<Enable Audit>"
}
}resource "apono_resource_integration" "aws-account-integration" {
name = "Amazon Account"
type = "aws-account"
connector_id = "apono-connector-id"
connected_resource_types = ["aws-account-s3-bucket"]
integration_config = {
region = "<Region>"
profile = "<AWS Profile Name (Optional)>"
credentials_rotation_period_in_days = "<Credentials rotation period (in days)>"
credentials_cleanup_period_in_days = "<User cleanup after access is revoked (in days)>"
enable_audit = "<Enable Audit>"
}
}Schema
Integration Config
Last updated
Was this helpful?
