Timed out error on create RDS DBProxyTargetGroup with CFT

0

I have created DBProxy with CFT. When I am trying to create the DB proxy its getting timed out error.

DB proxy CFT

{
    "AWSTemplateFormatVersion": "2010-09-09",
    "Description": "Template fot standard SQS",
    "Resources": {
        "DBProxy": {
            "Type" : "AWS::RDS::DBProxy",
            "Properties" : {
                "Auth" : [ {
                    "ClientPasswordAuthType" : "POSTGRES_SCRAM_SHA_256",
                    "Description" : "DB proxy",
                    "IAMAuth" : "DISABLED",
                    "SecretArn" : "arn:aws:secretsmanager:us-west-2:......"
                  }
                 ],
                "DBProxyName" : "test",
                "DebugLogging" : "true",
                "EngineFamily" : "POSTGRESQL",
                "IdleClientTimeout" : 1800,
                "RoleArn" : "arn:aws:iam::.....",
                "VpcSecurityGroupIds" : [ "sg-0" ],
                "VpcSubnetIds" : [ "subnet-0f", "subnet-06" ]
              }
          }
    },
    "Outputs": {
        "DBProxy": {
            "Description": "DBProxy",
            "Value": {
                "Ref": "DBProxy"
            }
        }
    }
}

DBProxyTargetGroup

{
    "AWSTemplateFormatVersion": "2010-09-09",
    "Description": "Template fot standard SQS",
    "Resources": {
        "DBProxyTargetGroup": {
            "Type": "AWS::RDS::DBProxyTargetGroup",
            "Properties": {
                "DBClusterIdentifiers": [
                    "clustername"
                ],
                "DBProxyName": "test",
                "TargetGroupName": "default"
            }
        }
    },
    "Outputs": {
        "DBProxyTargetGroup": {
            "Description": "DBProxyTargetGroup",
            "Value": {
                "Ref": "DBProxyTargetGroup"
            }
        }
    }
}

I am trying to connect my cluster but its giving timed out error.

답변 없음

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠