cloud-gov / product

Program-level artifacts, workflow and issues for cloud.gov
Creative Commons Zero v1.0 Universal
29 stars 15 forks source link

Create customer facing templates for RDS upgrades #2872

Closed cweibel closed 5 months ago

cweibel commented 5 months ago

In order to notify our customers that they have retiring instance types and database engine versions, we need to identify the databases impacted and provide upgrade guidance

Tasks


Security considerations

There should be no changes to security boundaries, practices, documentation, risk that arise directly from this story

Implementation sketch

Pseudo code:

    if (family = t2,m4) and (pg 11.19 or mysql 5.7.32)
        customer needs to upgrade instance type and perform engine upgrade
    elseif  !(family = t2,m4) and (pg 11.19 or mysql 5.7.32)
        customer needs to upgrade engine
    elseif  (family = t2,m4) and !(pg 11.19 or mysql 5.7.32)
        customer needs to upgrade instance type
    else
        db is fine, leave alone
    end if