@@ -28,84 +28,84 @@ export class SecretRotationApplication {
28
28
/**
29
29
* Conducts an AWS SecretsManager secret rotation for RDS MariaDB using the single user rotation scheme
30
30
*/
31
- public static readonly MARIADB_ROTATION_SINGLE_USER = new SecretRotationApplication ( 'SecretsManagerRDSMariaDBRotationSingleUser' , '1.1.60 ' ) ;
31
+ public static readonly MARIADB_ROTATION_SINGLE_USER = new SecretRotationApplication ( 'SecretsManagerRDSMariaDBRotationSingleUser' , '1.1.225 ' ) ;
32
32
33
33
/**
34
34
* Conducts an AWS SecretsManager secret rotation for RDS MariaDB using the multi user rotation scheme
35
35
*/
36
- public static readonly MARIADB_ROTATION_MULTI_USER = new SecretRotationApplication ( 'SecretsManagerRDSMariaDBRotationMultiUser' , '1.1.60 ' , {
36
+ public static readonly MARIADB_ROTATION_MULTI_USER = new SecretRotationApplication ( 'SecretsManagerRDSMariaDBRotationMultiUser' , '1.1.225 ' , {
37
37
isMultiUser : true ,
38
38
} ) ;
39
39
40
40
/**
41
41
* Conducts an AWS SecretsManager secret rotation for RDS MySQL using the single user rotation scheme
42
42
*/
43
- public static readonly MYSQL_ROTATION_SINGLE_USER = new SecretRotationApplication ( 'SecretsManagerRDSMySQLRotationSingleUser' , '1.1.60 ' ) ;
43
+ public static readonly MYSQL_ROTATION_SINGLE_USER = new SecretRotationApplication ( 'SecretsManagerRDSMySQLRotationSingleUser' , '1.1.225 ' ) ;
44
44
45
45
/**
46
46
* Conducts an AWS SecretsManager secret rotation for RDS MySQL using the multi user rotation scheme
47
47
*/
48
- public static readonly MYSQL_ROTATION_MULTI_USER = new SecretRotationApplication ( 'SecretsManagerRDSMySQLRotationMultiUser' , '1.1.60 ' , {
48
+ public static readonly MYSQL_ROTATION_MULTI_USER = new SecretRotationApplication ( 'SecretsManagerRDSMySQLRotationMultiUser' , '1.1.225 ' , {
49
49
isMultiUser : true ,
50
50
} ) ;
51
51
52
52
/**
53
53
* Conducts an AWS SecretsManager secret rotation for RDS Oracle using the single user rotation scheme
54
54
*/
55
- public static readonly ORACLE_ROTATION_SINGLE_USER = new SecretRotationApplication ( 'SecretsManagerRDSOracleRotationSingleUser' , '1.1.60 ' ) ;
55
+ public static readonly ORACLE_ROTATION_SINGLE_USER = new SecretRotationApplication ( 'SecretsManagerRDSOracleRotationSingleUser' , '1.1.225 ' ) ;
56
56
57
57
/**
58
58
* Conducts an AWS SecretsManager secret rotation for RDS Oracle using the multi user rotation scheme
59
59
*/
60
- public static readonly ORACLE_ROTATION_MULTI_USER = new SecretRotationApplication ( 'SecretsManagerRDSOracleRotationMultiUser' , '1.1.60 ' , {
60
+ public static readonly ORACLE_ROTATION_MULTI_USER = new SecretRotationApplication ( 'SecretsManagerRDSOracleRotationMultiUser' , '1.1.225 ' , {
61
61
isMultiUser : true ,
62
62
} ) ;
63
63
64
64
/**
65
65
* Conducts an AWS SecretsManager secret rotation for RDS PostgreSQL using the single user rotation scheme
66
66
*/
67
- public static readonly POSTGRES_ROTATION_SINGLE_USER = new SecretRotationApplication ( 'SecretsManagerRDSPostgreSQLRotationSingleUser' , '1.1.60 ' ) ;
67
+ public static readonly POSTGRES_ROTATION_SINGLE_USER = new SecretRotationApplication ( 'SecretsManagerRDSPostgreSQLRotationSingleUser' , '1.1.225 ' ) ;
68
68
69
69
/**
70
70
* Conducts an AWS SecretsManager secret rotation for RDS PostgreSQL using the multi user rotation scheme
71
71
*/
72
- public static readonly POSTGRES_ROTATION_MULTI_USER = new SecretRotationApplication ( 'SecretsManagerRDSPostgreSQLRotationMultiUser' , '1.1.60 ' , {
72
+ public static readonly POSTGRES_ROTATION_MULTI_USER = new SecretRotationApplication ( 'SecretsManagerRDSPostgreSQLRotationMultiUser' , '1.1.225 ' , {
73
73
isMultiUser : true ,
74
74
} ) ;
75
75
76
76
/**
77
77
* Conducts an AWS SecretsManager secret rotation for RDS SQL Server using the single user rotation scheme
78
78
*/
79
- public static readonly SQLSERVER_ROTATION_SINGLE_USER = new SecretRotationApplication ( 'SecretsManagerRDSSQLServerRotationSingleUser' , '1.1.60 ' ) ;
79
+ public static readonly SQLSERVER_ROTATION_SINGLE_USER = new SecretRotationApplication ( 'SecretsManagerRDSSQLServerRotationSingleUser' , '1.1.225 ' ) ;
80
80
81
81
/**
82
82
* Conducts an AWS SecretsManager secret rotation for RDS SQL Server using the multi user rotation scheme
83
83
*/
84
- public static readonly SQLSERVER_ROTATION_MULTI_USER = new SecretRotationApplication ( 'SecretsManagerRDSSQLServerRotationMultiUser' , '1.1.60 ' , {
84
+ public static readonly SQLSERVER_ROTATION_MULTI_USER = new SecretRotationApplication ( 'SecretsManagerRDSSQLServerRotationMultiUser' , '1.1.225 ' , {
85
85
isMultiUser : true ,
86
86
} ) ;
87
87
88
88
/**
89
89
* Conducts an AWS SecretsManager secret rotation for Amazon Redshift using the single user rotation scheme
90
90
*/
91
- public static readonly REDSHIFT_ROTATION_SINGLE_USER = new SecretRotationApplication ( 'SecretsManagerRedshiftRotationSingleUser' , '1.1.60 ' ) ;
91
+ public static readonly REDSHIFT_ROTATION_SINGLE_USER = new SecretRotationApplication ( 'SecretsManagerRedshiftRotationSingleUser' , '1.1.225 ' ) ;
92
92
93
93
/**
94
94
* Conducts an AWS SecretsManager secret rotation for Amazon Redshift using the multi user rotation scheme
95
95
*/
96
- public static readonly REDSHIFT_ROTATION_MULTI_USER = new SecretRotationApplication ( 'SecretsManagerRedshiftRotationMultiUser' , '1.1.60 ' , {
96
+ public static readonly REDSHIFT_ROTATION_MULTI_USER = new SecretRotationApplication ( 'SecretsManagerRedshiftRotationMultiUser' , '1.1.225 ' , {
97
97
isMultiUser : true ,
98
98
} ) ;
99
99
100
100
/**
101
101
* Conducts an AWS SecretsManager secret rotation for MongoDB using the single user rotation scheme
102
102
*/
103
- public static readonly MONGODB_ROTATION_SINGLE_USER = new SecretRotationApplication ( 'SecretsManagerMongoDBRotationSingleUser' , '1.1.60 ' ) ;
103
+ public static readonly MONGODB_ROTATION_SINGLE_USER = new SecretRotationApplication ( 'SecretsManagerMongoDBRotationSingleUser' , '1.1.225 ' ) ;
104
104
105
105
/**
106
106
* Conducts an AWS SecretsManager secret rotation for MongoDB using the multi user rotation scheme
107
107
*/
108
- public static readonly MONGODB_ROTATION_MULTI_USER = new SecretRotationApplication ( 'SecretsManagerMongoDBRotationMultiUser' , '1.1.60 ' , {
108
+ public static readonly MONGODB_ROTATION_MULTI_USER = new SecretRotationApplication ( 'SecretsManagerMongoDBRotationMultiUser' , '1.1.225 ' , {
109
109
isMultiUser : true ,
110
110
} ) ;
111
111
0 commit comments