Pahud Hsieh
Pahud Hsieh
Yeah I guess we need to improve the doc here.
I created a new parameter group like this without specifying some props(comment off): ```ts const mysql8ParameterGroupParameters3 = { // character_set_client: "utf8", // character_set_connection: "utf8", // character_set_database: "utf8", // // character_set_filesystem:...
If you do not specify those attributes, CDK would not synthesize for that explicitly and the default values would be determined by CFN, not CDK. I am afraid this is...
Yes, thank you for the callout. We should get it fixed.
Thank you for the report.
Thank you for the report. We'll bring this up to the maintainer for further investigation.
This should not happen. I just created a test role like this and apply the tag on it. ```ts export class DummyStack extends Stack { constructor(scope: Construct, id: string, props:...
I can't reproduce this Can you just create a CnameRecord with all static props like this sample below: ```ts new route53.CnameRecord(this, 'CNAME', { recordName: 'demo', zone: route53.HostedZone.fromHostedZoneAttributes(this, 'ImportedHostedZone', { hostedZoneId:...
Are you seeing the collision of lambda functions or the secrets? I just defined this stack class ```ts export class DummyStack extends Stack { constructor(scope: Construct, id: string, props: StackProps)...
``` new DummyStack(app, 'test', { env: { account: defaultAccount, region: "us-west-2", }, stackName: "stack-project-1-test" }); ``` OK looks like you are having two stacks in the same cdk app with...