Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CloudFormation returns Internal Failure when changing existing RDS Instance parameters #6542

Closed
robertd opened this issue Mar 2, 2020 · 13 comments
Assignees
Labels
@aws-cdk/aws-rds Related to Amazon Relational Database bug This issue is a bug. needs-cfn This issue is waiting on changes to CloudFormation before it can be addressed.

Comments

@robertd
Copy link
Contributor

robertd commented Mar 2, 2020

Check #6439 for more details.

AWS Support Case ID: 6844571841

We are having issues applying any kind of changes to an existing RDS stack. We're using aws-cdk in Typescript. AWS Support noted that Python version worked for them running on aws-cdk v1.18.0. There is a strong possibility this may be a CloudFormation issue, but we're looking into figuring out reproduction steps.

aws-cdk team members aware of this issue: @nija-at (through #6439) @MrArnoldPalmer (through Gitter)

aws-cdk code:

    const dbInstance = new rds.DatabaseInstance(this, "VectorRds", {
      instanceIdentifier,
      engine: rds.DatabaseInstanceEngine.POSTGRES,
      removalPolicy: cdk.RemovalPolicy.DESTROY,
      engineVersion,
      instanceClass: ec2.InstanceType.of(ec2.InstanceClass.T3, ec2.InstanceSize.SMALL),
      masterUsername: "admin",
      backupRetention: cdk.Duration.days(backupRetention),
      copyTagsToSnapshot: true,
      securityGroups: [ dbSecurityGroup ],
      storageType: rds.StorageType.IO1,
      iops: 2000,
      // enablePerformanceInsights: true, // only works on PG version 10+
      deletionProtection, // false only in development
      multiAz,
      vpc,
    });

Here is our redacted template:

{
  "Resources": {
    "VectorRdsSubnetGroup620EE5FB": {
      "Type": "AWS::RDS::DBSubnetGroup",
      "Properties": {
        "DBSubnetGroupDescription": "Subnet group for VectorRds database",
        "SubnetIds": [
          "subnet-1234567890",
          "subnet-0987654321",
          "subnet-abcdefghij"
        ]
      },
      "Metadata": {
        "aws:cdk:path": "DMVectorRdsStack/VectorRds/SubnetGroup"
      }
    },
    "VectorRdsSecret66CB2648": {
      "Type": "AWS::SecretsManager::Secret",
      "Properties": {
        "Description": {
          "Fn::Join": [
            "",
            [
              "Generated by the CDK for stack: ",
              {
                "Ref": "AWS::StackName"
              }
            ]
          ]
        },
        "GenerateSecretString": {
          "ExcludeCharacters": "\"@/\\",
          "GenerateStringKey": "password",
          "PasswordLength": 30,
          "SecretStringTemplate": "{\"username\":\"admin\"}"
        }
      },
      "Metadata": {
        "aws:cdk:path": "DMVectorRdsStack/VectorRds/Secret/Resource"
      }
    },
    "VectorRdsSecretAttachment2E39F871": {
      "Type": "AWS::SecretsManager::SecretTargetAttachment",
      "Properties": {
        "SecretId": {
          "Ref": "VectorRdsSecret66CB2648"
        },
        "TargetId": {
          "Ref": "VectorRds92A77672"
        },
        "TargetType": "AWS::RDS::DBInstance"
      },
      "Metadata": {
        "aws:cdk:path": "DMVectorRdsStack/VectorRds/Secret/Attachment/Resource"
      }
    },
    "VectorRds92A77672": {
      "Type": "AWS::RDS::DBInstance",
      "Properties": {
        "DBInstanceClass": "db.t3.small",
        "AllocatedStorage": "100",
        "BackupRetentionPeriod": 7,
        "CopyTagsToSnapshot": true,
        "DBInstanceIdentifier": "testing2",
        "DBSubnetGroupName": {
          "Ref": "VectorRdsSubnetGroup620EE5FB"
        },
        "DeletionProtection": false,
        "Engine": "postgres",
        "EngineVersion": "11.5",
        "Iops": 2000,
        "MasterUsername": {
          "Fn::Join": [
            "",
            [
              "{{resolve:secretsmanager:",
              {
                "Ref": "VectorRdsSecret66CB2648"
              },
              ":SecretString:username::}}"
            ]
          ]
        },
        "MasterUserPassword": {
          "Fn::Join": [
            "",
            [
              "{{resolve:secretsmanager:",
              {
                "Ref": "VectorRdsSecret66CB2648"
              },
              ":SecretString:password::}}"
            ]
          ]
        },
        "MultiAZ": true,
        "StorageType": "io1",
        "VPCSecurityGroups": [
          {
            "Fn::ImportValue": "dm-vector-rds-sg"
          }
        ]
      },
      "UpdateReplacePolicy": "Delete",
      "DeletionPolicy": "Delete",
      "Metadata": {
        "aws:cdk:path": "DMVectorRdsStack/VectorRds/Resource"
      }
    }
  },
  "Outputs": {
    "dmvectorrdsdnsendpoint": {
      "Description": "Vector RDS DNS endpoint",
      "Value": {
        "Fn::GetAtt": [
          "VectorRds92A77672",
          "Endpoint.Address"
        ]
      },
      "Export": {
        "Name": "dm-vector-rds-dns-endpoint"
      }
    }
  }
}

Reproduction Steps

  • Create RDS stack using CDK
  • Introduce a change (different instance type/size or multiAZ)
  • CloudFormation throws error Internal Failure

Error Log

Example of changing multiAz parameter:

Stack VectorRdsStack
 Resources
 [~] AWS::RDS::DBInstance VectorRds VectorRds92A77672 
  └─ [+] MultiAZ
      └─ true
 $ cdk deploy '*' --require-approval 'never'
 VectorRdsStack: deploying...
 VectorRdsStack: creating CloudFormation changeset...
  0/4 | 5:06:28 AM | UPDATE_IN_PROGRESS   | AWS::RDS::DBInstance                        | VectorRds (VectorRds92A77672) 
  0/4 | 5:06:28 AM | UPDATE_IN_PROGRESS   | AWS::CDK::Metadata                          | CDKMetadata 
  1/4 | 5:06:29 AM | UPDATE_FAILED        | AWS::RDS::DBInstance                        | VectorRds (VectorRds92A77672) Internal Failure
 	new DatabaseInstance (/builds/rds/dm-vector-rds/node_modules/@aws-cdk/aws-rds/lib/instance.ts:795:22)
 	\_ new VectorRdsStack (/builds/rds/dm-vector-rds/lib/vector-rds-stack.ts:37:24)
 	\_ Object.<anonymous> (/builds/rds/dm-vector-rds/bin/vector-rds.ts:11:21)
 	\_ Module._compile (internal/modules/cjs/loader.js:1151:30)
 	\_ Module.m._compile (/builds/rds/dm-vector-rds/node_modules/ts-node/src/index.ts:814:23)
 	\_ Module._extensions..js (internal/modules/cjs/loader.js:1171:10)
 	\_ Object.require.extensions.<computed> [as .ts] (/builds/rds/dm-vector-rds/node_modules/ts-node/src/index.ts:817:12)

Example of changing instanceClass parameter:

 Stack DMVectorRdsStack
 Resources
 [~] AWS::RDS::DBInstance VectorRds VectorRds92A77672 
  └─ [~] DBInstanceClass
      ├─ [-] db.t3.small
      └─ [+] db.t3.medium
 $ cdk deploy '*' --require-approval 'never'
 DMVectorRdsSgStack
 DMVectorRdsSgStack: deploying...
  ✅  DMVectorRdsSgStack (no changes)
 Outputs:
 DMVectorRdsSgStack.dmvectorrdssg = sg-02ffd1ee9287b5c53
 Stack ARN:
 arn:aws:cloudformation:us-west-2:xxxxxxxxxxx:stack/DMVectorRdsSgStack/64920690-5bf8-11ea-9a38-0a06032da4ca
 DMVectorRdsStack
 DMVectorRdsStack: deploying...
 DMVectorRdsStack: creating CloudFormation changeset...
  0/2 | 8:51:29 PM | UPDATE_IN_PROGRESS   | AWS::RDS::DBInstance                        | VectorRds (VectorRds92A77672) 
  1/2 | 8:51:29 PM | UPDATE_FAILED        | AWS::RDS::DBInstance                        | VectorRds (VectorRds92A77672) Internal Failure
 	new DatabaseInstance (/builds/rds/dm-vector-rds/node_modules/@aws-cdk/aws-rds/lib/instance.ts:795:22)
 	\_ new VectorRdsStack (/builds/rds/dm-vector-rds/lib/vector-rds-stack.ts:27:24)
 	\_ Object.<anonymous> (/builds/rds/dm-vector-rds/bin/vector-rds.ts:13:24)
 	\_ Module._compile (internal/modules/cjs/loader.js:1151:30)
 	\_ Module.m._compile (/builds/rds/dm-vector-rds/node_modules/ts-node/src/index.ts:814:23)
 	\_ Module._extensions..js (internal/modules/cjs/loader.js:1171:10)
 	\_ Object.require.extensions.<computed> [as .ts] (/builds/rds/dm-vector-rds/node_modules/ts-node/src/index.ts:817:12)
 	\_ Module.load (internal/modules/cjs/loader.js:1000:32)
 	\_ Function.Module._load (internal/modules/cjs/loader.js:899:14)
 	\_ Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:71:12)
 	\_ main (/builds/rds/dm-vector-rds/node_modules/ts-node/src/bin.ts:226:14)
 	\_ Object.<anonymous> (/builds/rds/dm-vector-rds/node_modules/ts-node/src/bin.ts:485:3)
 	\_ Module._compile (internal/modules/cjs/loader.js:1151:30)
 	\_ Object.Module._extensions..js (internal/modules/cjs/loader.js:1171:10)
 	\_ Module.load (internal/modules/cjs/loader.js:1000:32)
 	\_ Function.Module._load (internal/modules/cjs/loader.js:899:14)
 	\_ Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:71:12)
 	\_ /usr/local/lib/node_modules/npm/node_modules/libnpx/index.js:268:14
  1/2 | 8:51:30 PM | UPDATE_ROLLBACK_IN_P | AWS::CloudFormation::Stack                  | DMVectorRdsStack The following resource(s) failed to update: [VectorRds92A77672]. 
  2/2 | 8:51:44 PM | UPDATE_COMPLETE      | AWS::RDS::DBInstance                        | VectorRds (VectorRds92A77672) 
  2/2 | 8:51:45 PM | UPDATE_ROLLBACK_COMP | AWS::CloudFormation::Stack                  | DMVectorRdsStack 
  3/2 | 8:51:46 PM | UPDATE_ROLLBACK_COMP | AWS::CloudFormation::Stack                  | DMVectorRdsStack 
  ❌  DMVectorRdsStack failed: Error: The stack named DMVectorRdsStack is in a failed state: UPDATE_ROLLBACK_COMPLETE
     at /usr/local/lib/node_modules/aws-cdk/lib/api/util/cloudformation.ts:165:13
     at processTicksAndRejections (internal/process/task_queues.js:97:5)
     at waitFor (/usr/local/lib/node_modules/aws-cdk/lib/api/util/cloudformation.ts:76:20)
     at Object.deployStack (/usr/local/lib/node_modules/aws-cdk/lib/api/deploy-stack.ts:155:7)
     at CdkToolkit.deploy (/usr/local/lib/node_modules/aws-cdk/lib/cdk-toolkit.ts:137:24)
     at main (/usr/local/lib/node_modules/aws-cdk/bin/cdk.ts:218:16)
     at initCommandLine (/usr/local/lib/node_modules/aws-cdk/bin/cdk.ts:168:9)
 The stack named DMVectorRdsStack is in a failed state: UPDATE_ROLLBACK_COMPLETE
 ERROR: Job failed: exit code 1

Environment

  • Framework Version: 1.26.0
  • Language : Typescript

Other


This is 🐛 Bug Report

@robertd robertd added bug This issue is a bug. needs-triage This issue or PR still needs to be triaged. labels Mar 2, 2020
@robertd robertd changed the title CloudFormation returns when changing existing RDS Instance parameters CloudFormation returns Internal Failure when changing existing RDS Instance parameters Mar 2, 2020
@SomayaB SomayaB added the @aws-cdk/aws-rds Related to Amazon Relational Database label Mar 2, 2020
@robertd
Copy link
Contributor Author

robertd commented Mar 3, 2020

@nija-at I've tried a very minimal configuration for creating RDS using cdk, but I'm getting the same error when trying to introduce a change

    const vpc = ec2.Vpc.fromLookup(this, "vpc", { vpcId: "vpc-1234567890qwert" });

    const dbInstance = new rds.DatabaseInstance(this, "TestingRds", {
      engine: rds.DatabaseInstanceEngine.POSTGRES,
      engineVersion: "11.6",
      instanceClass: ec2.InstanceType.of(ec2.InstanceClass.T3, ec2.InstanceSize.MEDIUM),
      masterUsername: "test",
      vpc,
    });

CDK Diff:

test git:(master) ✗ cdk diff
Stack TestStack
Resources
[~] AWS::RDS::DBInstance TestingRds TestingRdsCD873710
 └─ [~] DBInstanceClass
     ├─ [-] db.t3.small
     └─ [+] db.t3.medium

CloudFormation Template

TestingRdsCD873710:
    Type: AWS::RDS::DBInstance
    Properties:
      DBInstanceClass: db.t3.medium
      AllocatedStorage: "100"
      CopyTagsToSnapshot: true
      DBSubnetGroupName:
        Ref: TestingRdsSubnetGroupF14512CF
      DeletionProtection: false
      Engine: postgres
      EngineVersion: "11.6"
      MasterUsername:
        Fn::Join:
          - ""
          - - "{{resolve:secretsmanager:"
            - Ref: TestingRdsSecretDD42C1F2
            - :SecretString:username::}}
      MasterUserPassword:
        Fn::Join:
          - ""
          - - "{{resolve:secretsmanager:"
            - Ref: TestingRdsSecretDD42C1F2
            - :SecretString:password::}}
      StorageType: gp2
      VPCSecurityGroups:
        - Fn::GetAtt:
            - TestingRdsSecurityGroup26A56BEF
            - GroupId
    UpdateReplacePolicy: Retain
    DeletionPolicy: Retain
    Metadata:
      aws:cdk:path: TestStack/TestingRds/Resource

Error log:

test git:(master) ✗ cdk deploy '*'
TestStack: deploying...
TestStack: creating CloudFormation changeset...
 0/2 | 4:19:31 PM | UPDATE_IN_PROGRESS   | AWS::RDS::DBInstance                        | TestingRds (TestingRdsCD873710)
 1/2 | 4:19:32 PM | UPDATE_FAILED        | AWS::RDS::DBInstance                        | TestingRds (TestingRdsCD873710) Internal Failure
	new DatabaseInstance (/Users/rdjurasaj/code/rds/test/node_modules/@aws-cdk/aws-rds/lib/instance.ts:795:22)
	\_ new TestStack (/Users/rdjurasaj/code/rds/test/lib/test-stack.ts:11:24)
	\_ Object.<anonymous> (/Users/rdjurasaj/code/rds/test/bin/test.ts:12:14)
	\_ Module._compile (internal/modules/cjs/loader.js:1151:30)
	\_ Module.m._compile (/Users/rdjurasaj/code/rds/test/node_modules/ts-node/src/index.ts:814:23)
	\_ Module._extensions..js (internal/modules/cjs/loader.js:1171:10)
	\_ Object.require.extensions.<computed> [as .ts] (/Users/rdjurasaj/code/rds/test/node_modules/ts-node/src/index.ts:817:12)
	\_ Module.load (internal/modules/cjs/loader.js:1000:32)
	\_ Function.Module._load (internal/modules/cjs/loader.js:899:14)
	\_ Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:71:12)
	\_ main (/Users/rdjurasaj/code/rds/test/node_modules/ts-node/src/bin.ts:226:14)
	\_ Object.<anonymous> (/Users/rdjurasaj/code/rds/test/node_modules/ts-node/src/bin.ts:485:3)
	\_ Module._compile (internal/modules/cjs/loader.js:1151:30)
	\_ Object.Module._extensions..js (internal/modules/cjs/loader.js:1171:10)
	\_ Module.load (internal/modules/cjs/loader.js:1000:32)
	\_ Function.Module._load (internal/modules/cjs/loader.js:899:14)
	\_ Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:71:12)
	\_ /Users/rdjurasaj/.nvm/versions/node/v13.9.0/lib/node_modules/npm/node_modules/libnpx/index.js:268:14
 1/2 | 4:19:33 PM | UPDATE_ROLLBACK_IN_P | AWS::CloudFormation::Stack                  | TestStack The following resource(s) failed to update: [TestingRdsCD873710].
 2/2 | 4:19:47 PM | UPDATE_COMPLETE      | AWS::RDS::DBInstance                        | TestingRds (TestingRdsCD873710)
 2/2 | 4:19:48 PM | UPDATE_ROLLBACK_COMP | AWS::CloudFormation::Stack                  | TestStack
 3/2 | 4:19:49 PM | UPDATE_ROLLBACK_COMP | AWS::CloudFormation::Stack                  | TestStack

 ❌  TestStack failed: Error: The stack named TestStack is in a failed state: UPDATE_ROLLBACK_COMPLETE
    at /Users/rdjurasaj/.nvm/versions/node/v13.9.0/lib/node_modules/aws-cdk/lib/api/util/cloudformation.ts:165:13
    at processTicksAndRejections (internal/process/task_queues.js:97:5)
    at waitFor (/Users/rdjurasaj/.nvm/versions/node/v13.9.0/lib/node_modules/aws-cdk/lib/api/util/cloudformation.ts:76:20)
    at Object.deployStack (/Users/rdjurasaj/.nvm/versions/node/v13.9.0/lib/node_modules/aws-cdk/lib/api/deploy-stack.ts:155:7)
    at CdkToolkit.deploy (/Users/rdjurasaj/.nvm/versions/node/v13.9.0/lib/node_modules/aws-cdk/lib/cdk-toolkit.ts:137:24)
    at main (/Users/rdjurasaj/.nvm/versions/node/v13.9.0/lib/node_modules/aws-cdk/bin/cdk.ts:218:16)
    at initCommandLine (/Users/rdjurasaj/.nvm/versions/node/v13.9.0/lib/node_modules/aws-cdk/bin/cdk.ts:168:9)
The stack named TestStack is in a failed state: UPDATE_ROLLBACK_COMPLETE

@nija-at
Copy link
Contributor

nija-at commented Mar 3, 2020

I apologize but there's nothing the CDK team can do here. The error is coming from RDS' Frontend that is being invoked by CloudFormation on your behalf.

One possibility is that the CDK turns on DeletionProtection on an instance by default. Modifying any property that would need the instance to be replaced would be forbidden. Maybe this is what's causing the error. Can you try setting up a brand new stack with deletionProtection set to false, followed by the running a similar modification?

Nevertheless, 'Internal Failure' is not an acceptable error message. Continue engaging with AWS support and notify them to reach out to the RDS team.

Internal reference: tt/0308387897

@robertd
Copy link
Contributor Author

robertd commented Mar 3, 2020

@nija-at I understand. I'm going to leave this issue open for the AWS Support team's reference.

@nija-at nija-at added needs-cfn This issue is waiting on changes to CloudFormation before it can be addressed. and removed needs-triage This issue or PR still needs to be triaged. labels Mar 3, 2020
@robertd
Copy link
Contributor Author

robertd commented Mar 3, 2020

@nija-at I'm getting same issue w/ DeletionProtection: false as well. I'm baffled why this is happening to be honest. I may try our other AWS account to see if it is account specific issue. I doubt it but at this point I'm checking every minor detail.

@robertd
Copy link
Contributor Author

robertd commented Mar 4, 2020

Hey @nija-at... @MrArnoldPalmer and I were troubleshooting this on Gitter and I believe we found the possible culprit. We've found out that if I create and update stack in default account VPC then everything works fine. I was able to change instance size from t3.small to t3.medium and deletion protection parameter.

test git:(master) ✗ cdk diff
Stack TestStack
Resources
[~] AWS::RDS::DBInstance TestingRds TestingRdsCD873710
 ├─ [~] DBInstanceClass
 │   ├─ [-] db.t3.small
 │   └─ [+] db.t3.medium
 └─ [~] DeletionProtection

➜  test git:(master) ✗ cdk deploy
TestStack: deploying...
TestStack: creating CloudFormation changeset...
 0/2 | 6:04:01 PM | UPDATE_IN_PROGRESS   | AWS::RDS::DBInstance                        | TestingRds (TestingRdsCD873710)
0/2 Currently in progress: TestingRdsCD873710
 1/2 | 6:11:53 PM | UPDATE_COMPLETE      | AWS::RDS::DBInstance                        | TestingRds (TestingRdsCD873710)
 1/2 | 6:11:56 PM | UPDATE_COMPLETE_CLEA | AWS::CloudFormation::Stack                  | TestStack

 ✅  TestStack

Stack ARN:
arn:aws:cloudformation:us-west-2:xxxxxxxxxxxxx:stack/TestStack/40b420d0-5db2-11ea-beef-06cac24c53a2

However, if I create the RDS stack in a shared VPC (imported from different account due to original VPC running low on IPs) then I'm not able to make any changes to that RDS stack (Internal Failure error).

Hopefully this helps AWS team narrow down the issue.

@jls-tschanzc
Copy link

jls-tschanzc commented Mar 4, 2020

To add to this, I am also running the Instance in a CDK created VPC:

    const vpc = new Vpc(this, 'TestVPC', {
      natGateways: 1,
      maxAzs: 2,
    });

Same problems (See #6439 ), did not try with default VPC though.

@MrArnoldPalmer
Copy link
Contributor

MrArnoldPalmer commented Mar 4, 2020

@jls-tschanzc to clarify a bit, is this VPC in the same account that the DB instances is being created in?

I'd encourage you to make a case with AWS support as well if you can since this issues seems to be on the AWS service side and not with CDK.

@maiconrocha
Copy link

Hi @robertd , thanks for the detailed information in how to reproduce the issue.

I can confirm there is a known issue on Cloudformation with respect to AWS::RDS::DBInstance being created in a VPC shared from a different AWS Account via RAM.

Please follow the link below for updates:
aws-cloudformation/cloudformation-coverage-roadmap#373

Hey @nija-at... @MrArnoldPalmer and I were troubleshooting this on Gitter and I believe we found the possible culprit. We've found out that if I create and update stack in default account VPC then everything works fine. I was able to change instance size from t3.small to t3.medium and deletion protection parameter.

test git:(master) ✗ cdk diff
Stack TestStack
Resources
[~] AWS::RDS::DBInstance TestingRds TestingRdsCD873710
 ├─ [~] DBInstanceClass
 │   ├─ [-] db.t3.small
 │   └─ [+] db.t3.medium
 └─ [~] DeletionProtection

➜  test git:(master) ✗ cdk deploy
TestStack: deploying...
TestStack: creating CloudFormation changeset...
 0/2 | 6:04:01 PM | UPDATE_IN_PROGRESS   | AWS::RDS::DBInstance                        | TestingRds (TestingRdsCD873710)
0/2 Currently in progress: TestingRdsCD873710
 1/2 | 6:11:53 PM | UPDATE_COMPLETE      | AWS::RDS::DBInstance                        | TestingRds (TestingRdsCD873710)
 1/2 | 6:11:56 PM | UPDATE_COMPLETE_CLEA | AWS::CloudFormation::Stack                  | TestStack

 ✅  TestStack

Stack ARN:
arn:aws:cloudformation:us-west-2:xxxxxxxxxxxxx:stack/TestStack/40b420d0-5db2-11ea-beef-06cac24c53a2

However, if I create the RDS stack in a shared VPC (imported from different account due to original VPC running low on IPs) then I'm not able to make any changes to that RDS stack (Internal Failure error).

Hopefully this helps AWS team narrow down the issue.

@robertd
Copy link
Contributor Author

robertd commented Mar 4, 2020

Thanks for the update @maiconrocha.

@nija-at
Copy link
Contributor

nija-at commented Mar 5, 2020

If it's alright, I'm going to go ahead and close this issue since this isn't related to the CDK.

You may continue tracking the issue that @maiconrocha linked above for updates, or with case opened with AWS support.

Let me know if I've missed anything here.

@nija-at nija-at closed this as completed Mar 5, 2020
@jls-tschanzc
Copy link

jls-tschanzc commented Mar 5, 2020

@MrArnoldPalmer
The VPC my Instance is connected to, is in the same account. Created in the same CDK Stack.

@nija-at
So now all issues related to this are either closed or are not related to my issue (as my VPC is in the same account). As I have asked before: On which CFN Repository do you want me to create the issue if nothing can be done about it on the CDK side?

@robertd
Copy link
Contributor Author

robertd commented Mar 5, 2020

@jls-tschanzc I think it would be the best if you can drop a comment w/ what you're experiencing in aws-cloudformation/cloudformation-coverage-roadmap#373. Also it would be beneficial to create an AWS Support ticket in the account you're experiencing issues in linking to both aws-cdk repo and aws-cloudformation-coverage-roadmap issues.

@jls-tschanzc
Copy link

@robertd
Will do so.

I had hoped the CFN team had a way to report issues/bugs without paying for the privilege to do so; Technical Support Tickets are only available for Support Plans higher than "basic".

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
@aws-cdk/aws-rds Related to Amazon Relational Database bug This issue is a bug. needs-cfn This issue is waiting on changes to CloudFormation before it can be addressed.
Projects
None yet
Development

No branches or pull requests

6 participants