RDS
Requirements
Name
Description
1
Grant Teleskope AWS scopes
Grant the TeleskopeRole read permission
resource "aws_iam_role_policy_attachment" "rds_policy" {
role = "TeleskopeRole"
policy_arn = "arn:aws:iam::aws:policy/AmazonRDSReadOnlyAccess"
}Grant the TeleskopeRole Read and Write IAM Access to RDS (Optional)
resource "aws_iam_role_policy_attachment" "rds_policy" {
role = "TeleskopeRole"
policy_arn = "arn:aws:iam::aws:policy/AmazonRDSFullAccess"
}SSH Tunnel (Optional)
echo "<TELESKOPE_PUBLIC_KEY>" >> ~/.ssh/authorized_keyschmod 700 ~/.ssh chmod 600 ~/.ssh/authorized_keys
Last updated
Was this helpful?
