Skip to content
This repository has been archived by the owner on Apr 29, 2021. It is now read-only.

Commit

Permalink
added notification markdown, removed scss, changed navigation for not…
Browse files Browse the repository at this point in the history
…ifications
  • Loading branch information
lachellel committed Jul 25, 2017
1 parent 9b9f111 commit a4b247f
Show file tree
Hide file tree
Showing 5 changed files with 97 additions and 106 deletions.
8 changes: 4 additions & 4 deletions _config.yml
Expand Up @@ -64,10 +64,6 @@ navigation:
url: crls
internal: true
coll: false
- text: Change Notifications
url: notifications
internal: true
coll: false
# - text: Certificate Policies
# url: policyobjects
# internal: true
Expand All @@ -80,6 +76,10 @@ navigation:
url: tools
internal: true
coll: false
- text: Change Notifications
url: notifications
internal: true
coll: false
#https://github.com/jekyll/jekyll/issues/2346
#- text: Engineer Guides
# url: engineer/
Expand Down
44 changes: 28 additions & 16 deletions _data/notifications.yml
@@ -1,29 +1,41 @@
#data file for fpki-guides change notification
#format:
#notice_date: "<date in MM/DD/YYYY format>"
#change_type: "<your change_type>"
#start_datetime: "<in MM/DD/YYYY format>"
#end_datetime: "<in MM/DD/YYYY format>"
#notice_date: "<date in MM/DD/YYYY HH:MM EST format>"
#change_type: "< CA Certificate Issuance, CA Certificate Revocation, New CA, CA Termination, New OCSP URI, New CRL Distribution Point, OCSP Outage, CRL Outage >"
#start_datetime: "<in MM/DD/YYYY HH:MM format>"
#end_datetime: "<in MM/DD/YYYY HH:MM format>"
#system: "<Operating system, Application etc>"
#change_description: "<detailed statement>"
#impact: "<impact statement>"
#contact: "<email, phone etc>"
#
# ca_certificate: <pem encoded>
# cdp_uri:
# aia_uri:
# sia_uri:
# ocsp_uri:

- notice_date: 07/21/2017
change_type: sample
start_datetime: 07/21/2017
end_datetime: 07/21/2017
system: sample os

- notice_date: 07/21/2017 15:34 EST
change_type: CA Certificate Issuance
start_datetime:
end_datetime: 07/21/2017 15:34 EST
system: Federal Bridge CA 2016
change_description: sample change_description sample change_description sample change_description sample change_description sample change_description sample change_description sample change_description sample change_description sample change_description sample change_description sample change_description sample change_description sample change_description sample change_description sample change_description sample change_description sample change_description
impact: sample non impace
contact: sampleuser@sampleagency.gov
ca_certificate_hash:
ca_certificate_issuer: Federal Bridge CA 2016
ca_certificate_subject:
cdp_uri: http://pki.treas.gov/dhsca4.crl
aia_uri: http://pki.treas.gov/sample.p7b
sia_uri: http://pki.treas.gov/sample.p7b
ocsp_uri:

- notice_date: 06/21/2017
change_type: sample 1
start_datetime: 05/21/2017
end_datetime: 06/21/2017
system: sample os 1
- notice_date: 07/20/2017 15:34 EST
change_type: CA Certificate Revocation
start_datetime: 07/24/2017 15:34 EST
end_datetime: 07/25/2017 12:01 EST
system: Federal Bridge CA 2016
change_description: sample change_description 1
impact: sample non impact 1
impact: sample non impace
contact: sampleuser1@sampleagency.gov
27 changes: 0 additions & 27 deletions _sass/_notifications.scss

This file was deleted.

59 changes: 0 additions & 59 deletions pages/notifications.html

This file was deleted.

65 changes: 65 additions & 0 deletions pages/notifications.md
@@ -0,0 +1,65 @@
---
title: System Changes and Notifications
permalink: /notifications/
layout: default
---
This page lists the changes to certification authorities and supporting systems operating within the Federal PKI community.

- [List of Notifications](#notifications)

The communication of changes, and planned or unplanned system outages, is required by the certificate policies and the incident management process. Strong communication allows for planning and response and benefits the Federal PKI community as a whole. Planned changes of the these types require notifications two (2) weeks in advance:

- Changes to Certificate Revocation List Distribution Points
- Changes to Online Certificate Status Protocol (OCSP) endpoints
- Introducing new URIs or retiring old URIs referenced in the Certificates profiles in use
- Signing or revoking a _Certificate Authority (CA)_ certificate

System **outages** - either through a planned maintenance activity or unplanned event - may also be posted on this page, and may trigger the Incident Management process.

To report a change **or** system outage not listed below, please email fpki@gsa.gov.

### Notifications
<!-- This block loops through the notifications yml file under the data directory. -->

<div class="usa-width-one-whole">
<hr>
{% for notification in site.data.notifications %}
<ul class="usa-unstyled-list">
<li><strong>Notice date: </strong> {{ notification.notice_date }}</li>
<li><strong>System:</strong> {{ notification.system }}</li>
<li><strong>Type:</strong> {{ notification.change_type }}</li>
<li><strong>Start Date and Time:</strong> {{ notification.start_datetime }}</li>
<li><strong>End Date and Time:</strong> {{ notification.end_datetime }}</li>
<li><strong>Change Description:</strong> {{ notification.change_description }}</li>
<li><strong>Contact:</strong> {{ notification.contact }}</li>
</ul>
{% if notification.ca_certificate_issuer %}
<ul class="usa-unstyled-list">
<li><strong>Certificate Issuer:</strong> {{ notification.ca_certificate_issuer }}</li>
<li><strong>Certificate Subject:</strong> {{ notification.ca_certificate_subject }}</li>
<li><strong>Certificate SHA1 HASH:</strong> {{ notification.ca_certificate_hash }}</li>
</ul>
{% endif %}
{% if notification.cdp_uri %}
<ul class="usa-unstyled-list">
<li><strong>Certificate Revocation List:</strong> {{ notification.cdp_uri }}</li>
</ul>
{% endif %}
{% if notification.aia_uri %}
<ul class="usa-unstyled-list">
<li><strong>Certificate Bundle (AIA):</strong> {{ notification.aia_uri }}</li>
</ul>
{% endif %}
{% if notification.sia_uri %}
<ul class="usa-unstyled-list">
<li><strong>Certificate Bundle (SIA):</strong> {{ notification.sia_uri }}</li>
</ul>
{% endif %}
{% if notification.ocsp_uri %}
<ul class="usa-unstyled-list">
<li><strong>OCSP:</strong> {{ notification.ocsp_uri }}</li>
</ul>
{% endif %}
<hr>
{% endfor %}
</div>

1 comment on commit a4b247f

@godadada
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great. Thanks.

Please sign in to comment.