When I logged in my AWS account I got the following message:

*"We have determined that your RDS database instances are using the 
existing SSL certificate (rds-ca-2010) and this certificate will be updated 
on 23 March 2015. You must follow the steps here to update your application 
with the new SSL certificate bundle (rds-ca-2015) before 23 March 2015 
20:00 UTC. If you have not updated your application with the new 
certificate by then, you may lose connectivity to your RDS instances."*

I use a RDS PostgreSQL instance in a Django app. My settings are pretty 
vanilla:
    DATABASES = {
        'default': {
            'ENGINE': 'django.db.backends.postgresql_psycopg2',
            'NAME': config('DB_NAME'),
            'USER': config('DB_USER'),
            'PASSWORD': config('DB_PASSWORD'),
            'HOST': config('DB_HOST'),
            'PORT': config('DB_PORT'),
            'ATOMIC_REQUESTS': True
        }
    }


Do I need to make the certificates migration?

Thanks,
Flávio

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/e7eefb2f-8b67-4796-b2be-b79635f2463f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to