helpful-account-44059
04/14/2022, 7:00 AMexport const rds = new aws.rds.Instance(baseTags.Name, {
tags: baseTags,
engine: "postgres",
engineVersion: "13.6",
allocatedStorage: 500,
maxAllocatedStorage: 2000,
instanceClass: "db.m5.xlarge",
backupRetentionPeriod: 7,
backupWindow: "00:00-01:00",
maintenanceWindow: "Mon:02:00-Mon:04:00",
monitoringRoleArn: enhancedMonitoringRole.arn,
monitoringInterval: 15,
username: "postgres",
password: baseConfig.dbPassword,
dbName: baseConfig.dbName,
finalSnapshotIdentifier,
storageType: "gp2",
skipFinalSnapshot: false,
dbSubnetGroupName: subnetGroup.name,
vpcSecurityGroupIds: [networkingStack.getOutput("peeredSecurityGroupId")],
});
victorious-church-57397
04/14/2022, 7:27 AMignoreChanges: ['monitoringInterval']
in the pulumi component resource optshelpful-account-44059
04/14/2022, 7:31 AMvictorious-church-57397
04/14/2022, 7:31 AMacoustic-truck-53557
04/16/2022, 9:26 PMapply_immediately