├── .gitattributes ├── .github ├── PULL_REQUEST_TEMPLATE ├── release-drafter.yml └── workflows │ ├── bump-version.yml │ ├── ci.yml │ ├── publish.yml │ ├── python-dependency-updater.yml │ ├── release-drafter.yml │ └── update-compliance-data.yml ├── .gitignore ├── .pylintrc ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── HomebrewFormula └── aws-allowlister.rb ├── LICENSE ├── MANIFEST.in ├── Makefile ├── Pipfile ├── Pipfile.lock ├── README.md ├── SECURITY.md ├── aws_allowlister ├── __init__.py ├── bin │ ├── __init__.py │ ├── cli.py │ └── version.py ├── command │ ├── __init__.py │ └── generate.py ├── data │ ├── compliance.db │ ├── compliance_statuses.csv │ ├── hipaa-eligible-services-reference.html │ ├── iso-certified.html │ ├── overrides.yml │ └── services-in-scope.html ├── database │ ├── __init__.py │ ├── build.py │ ├── compliance_data.py │ ├── database.py │ ├── raw_scraping_data.py │ └── transformed_scraping_data.py ├── scrapers │ ├── __init__.py │ ├── aws_docs.py │ ├── common.py │ ├── overrides.py │ └── tables │ │ ├── __init__.py │ │ ├── dodccsrg.py │ │ ├── fedramp.py │ │ ├── hipaa.py │ │ ├── hitrust.py │ │ ├── iso.py │ │ └── standard.py └── shared │ ├── __init__.py │ └── utils.py ├── examples ├── 0.0.3 │ ├── All-AllowList-SCP.json │ ├── FedRAMP_All-AllowList-SCP.json │ ├── FedRAMP_High-AllowList-SCP.json │ ├── FedRAMP_Moderate-AllowList-SCP.json │ ├── HIPAA-AllowList-SCP.json │ ├── ISO-AllowList-SCP.json │ ├── PCI-AllowList-SCP.json │ └── SOC-AllowList-SCP.json ├── 0.0.4 │ ├── All-AllowList-SCP.json │ ├── FedRAMP_All-AllowList-SCP.json │ ├── FedRAMP_High-AllowList-SCP.json │ ├── FedRAMP_Moderate-AllowList-SCP.json │ ├── HIPAA-AllowList-SCP.json │ ├── ISO-AllowList-SCP.json │ ├── PCI-AllowList-SCP.json │ └── SOC-AllowList-SCP.json ├── 0.1.0 │ ├── All-AllowList-SCP.json │ ├── FedRAMP_All-AllowList-SCP.json │ ├── FedRAMP_High-AllowList-SCP.json │ ├── FedRAMP_Moderate-AllowList-SCP.json │ ├── HIPAA-AllowList-SCP.json │ ├── ISO-AllowList-SCP.json │ ├── PCI-AllowList-SCP.json │ └── SOC-AllowList-SCP.json ├── 0.1.2 │ ├── All-AllowList-SCP.json │ ├── FedRAMP_All-AllowList-SCP.json │ ├── FedRAMP_High-AllowList-SCP.json │ ├── FedRAMP_Moderate-AllowList-SCP.json │ ├── HIPAA-AllowList-SCP.json │ ├── ISO-AllowList-SCP.json │ ├── PCI-AllowList-SCP.json │ └── SOC-AllowList-SCP.json ├── 0.2.1 │ ├── All-AllowList-SCP.json │ ├── FedRAMP_All-AllowList-SCP.json │ ├── FedRAMP_High-AllowList-SCP.json │ ├── FedRAMP_Moderate-AllowList-SCP.json │ ├── HIPAA-AllowList-SCP.json │ ├── ISO-AllowList-SCP.json │ ├── PCI-AllowList-SCP.json │ └── SOC-AllowList-SCP.json ├── 0.2.11 │ ├── All-AllowList-SCP-Excluded.md │ ├── All-AllowList-SCP.json │ ├── All-AllowList-SCP.md │ ├── Commercial-AllowList-SCP-Excluded.md │ ├── Commercial-AllowList-SCP.json │ ├── Commercial-AllowList-SCP.md │ ├── DOD_CC_SRG_IL2_EW-AllowList-SCP-Excluded.md │ ├── DOD_CC_SRG_IL2_EW-AllowList-SCP.json │ ├── DOD_CC_SRG_IL2_EW-AllowList-SCP.md │ ├── DOD_CC_SRG_IL2_GC-AllowList-SCP-Excluded.md │ ├── DOD_CC_SRG_IL2_GC-AllowList-SCP.json │ ├── DOD_CC_SRG_IL2_GC-AllowList-SCP.md │ ├── DOD_CC_SRG_IL4_GC-AllowList-SCP-Excluded.md │ ├── DOD_CC_SRG_IL4_GC-AllowList-SCP.json │ ├── DOD_CC_SRG_IL4_GC-AllowList-SCP.md │ ├── DOD_CC_SRG_IL5_GC-AllowList-SCP-Excluded.md │ ├── DOD_CC_SRG_IL5_GC-AllowList-SCP.json │ ├── DOD_CC_SRG_IL5_GC-AllowList-SCP.md │ ├── FedRAMP_All-AllowList-SCP-Excluded.md │ ├── FedRAMP_All-AllowList-SCP.json │ ├── FedRAMP_All-AllowList-SCP.md │ ├── FedRAMP_High-AllowList-SCP-Excluded.md │ ├── FedRAMP_High-AllowList-SCP.json │ ├── FedRAMP_High-AllowList-SCP.md │ ├── FedRAMP_Moderate-AllowList-SCP-Excluded.md │ ├── FedRAMP_Moderate-AllowList-SCP.json │ ├── FedRAMP_Moderate-AllowList-SCP.md │ ├── HIPAA-AllowList-SCP-Excluded.md │ ├── HIPAA-AllowList-SCP.json │ ├── HIPAA-AllowList-SCP.md │ ├── ISO-AllowList-SCP-Excluded.md │ ├── ISO-AllowList-SCP.json │ ├── ISO-AllowList-SCP.md │ ├── PCI-AllowList-SCP-Excluded.md │ ├── PCI-AllowList-SCP.json │ ├── PCI-AllowList-SCP.md │ ├── SOC-AllowList-SCP-Excluded.md │ ├── SOC-AllowList-SCP.json │ └── SOC-AllowList-SCP.md ├── 0.2.12 │ ├── All-AllowList-SCP-Excluded.md │ ├── All-AllowList-SCP.json │ ├── All-AllowList-SCP.md │ ├── Commercial-AllowList-SCP-Excluded.md │ ├── Commercial-AllowList-SCP.json │ ├── Commercial-AllowList-SCP.md │ ├── DOD_CC_SRG_IL2_EW-AllowList-SCP-Excluded.md │ ├── DOD_CC_SRG_IL2_EW-AllowList-SCP.json │ ├── DOD_CC_SRG_IL2_EW-AllowList-SCP.md │ ├── DOD_CC_SRG_IL2_GC-AllowList-SCP-Excluded.md │ ├── DOD_CC_SRG_IL2_GC-AllowList-SCP.json │ ├── DOD_CC_SRG_IL2_GC-AllowList-SCP.md │ ├── DOD_CC_SRG_IL4_GC-AllowList-SCP-Excluded.md │ ├── DOD_CC_SRG_IL4_GC-AllowList-SCP.json │ ├── DOD_CC_SRG_IL4_GC-AllowList-SCP.md │ ├── DOD_CC_SRG_IL5_GC-AllowList-SCP-Excluded.md │ ├── DOD_CC_SRG_IL5_GC-AllowList-SCP.json │ ├── DOD_CC_SRG_IL5_GC-AllowList-SCP.md │ ├── FedRAMP_All-AllowList-SCP-Excluded.md │ ├── FedRAMP_All-AllowList-SCP.json │ ├── FedRAMP_All-AllowList-SCP.md │ ├── FedRAMP_High-AllowList-SCP-Excluded.md │ ├── FedRAMP_High-AllowList-SCP.json │ ├── FedRAMP_High-AllowList-SCP.md │ ├── FedRAMP_Moderate-AllowList-SCP-Excluded.md │ ├── FedRAMP_Moderate-AllowList-SCP.json │ ├── FedRAMP_Moderate-AllowList-SCP.md │ ├── HIPAA-AllowList-SCP-Excluded.md │ ├── HIPAA-AllowList-SCP.json │ ├── HIPAA-AllowList-SCP.md │ ├── ISO-AllowList-SCP-Excluded.md │ ├── ISO-AllowList-SCP.json │ ├── ISO-AllowList-SCP.md │ ├── PCI-AllowList-SCP-Excluded.md │ ├── PCI-AllowList-SCP.json │ ├── PCI-AllowList-SCP.md │ ├── SOC-AllowList-SCP-Excluded.md │ ├── SOC-AllowList-SCP.json │ └── SOC-AllowList-SCP.md ├── 0.2.13 │ ├── All-AllowList-SCP-Excluded.md │ ├── All-AllowList-SCP.json │ ├── All-AllowList-SCP.md │ ├── Commercial-AllowList-SCP-Excluded.md │ ├── Commercial-AllowList-SCP.json │ ├── Commercial-AllowList-SCP.md │ ├── DOD_CC_SRG_IL2_EW-AllowList-SCP-Excluded.md │ ├── DOD_CC_SRG_IL2_EW-AllowList-SCP.json │ ├── DOD_CC_SRG_IL2_EW-AllowList-SCP.md │ ├── DOD_CC_SRG_IL2_GC-AllowList-SCP-Excluded.md │ ├── DOD_CC_SRG_IL2_GC-AllowList-SCP.json │ ├── DOD_CC_SRG_IL2_GC-AllowList-SCP.md │ ├── DOD_CC_SRG_IL4_GC-AllowList-SCP-Excluded.md │ ├── DOD_CC_SRG_IL4_GC-AllowList-SCP.json │ ├── DOD_CC_SRG_IL4_GC-AllowList-SCP.md │ ├── DOD_CC_SRG_IL5_GC-AllowList-SCP-Excluded.md │ ├── DOD_CC_SRG_IL5_GC-AllowList-SCP.json │ ├── DOD_CC_SRG_IL5_GC-AllowList-SCP.md │ ├── FedRAMP_All-AllowList-SCP-Excluded.md │ ├── FedRAMP_All-AllowList-SCP.json │ ├── FedRAMP_All-AllowList-SCP.md │ ├── FedRAMP_High-AllowList-SCP-Excluded.md │ ├── FedRAMP_High-AllowList-SCP.json │ ├── FedRAMP_High-AllowList-SCP.md │ ├── FedRAMP_Moderate-AllowList-SCP-Excluded.md │ ├── FedRAMP_Moderate-AllowList-SCP.json │ ├── FedRAMP_Moderate-AllowList-SCP.md │ ├── HIPAA-AllowList-SCP-Excluded.md │ ├── HIPAA-AllowList-SCP.json │ ├── HIPAA-AllowList-SCP.md │ ├── ISO-AllowList-SCP-Excluded.md │ ├── ISO-AllowList-SCP.json │ ├── ISO-AllowList-SCP.md │ ├── PCI-AllowList-SCP-Excluded.md │ ├── PCI-AllowList-SCP.json │ ├── PCI-AllowList-SCP.md │ ├── SOC-AllowList-SCP-Excluded.md │ ├── SOC-AllowList-SCP.json │ └── SOC-AllowList-SCP.md ├── 0.2.14 │ ├── All-AllowList-SCP-Excluded.md │ ├── All-AllowList-SCP.json │ ├── All-AllowList-SCP.md │ ├── Commercial-AllowList-SCP-Excluded.md │ ├── Commercial-AllowList-SCP.json │ ├── Commercial-AllowList-SCP.md │ ├── DOD_CC_SRG_IL2_EW-AllowList-SCP-Excluded.md │ ├── DOD_CC_SRG_IL2_EW-AllowList-SCP.json │ ├── DOD_CC_SRG_IL2_EW-AllowList-SCP.md │ ├── DOD_CC_SRG_IL2_GC-AllowList-SCP-Excluded.md │ ├── DOD_CC_SRG_IL2_GC-AllowList-SCP.json │ ├── DOD_CC_SRG_IL2_GC-AllowList-SCP.md │ ├── DOD_CC_SRG_IL4_GC-AllowList-SCP-Excluded.md │ ├── DOD_CC_SRG_IL4_GC-AllowList-SCP.json │ ├── DOD_CC_SRG_IL4_GC-AllowList-SCP.md │ ├── DOD_CC_SRG_IL5_GC-AllowList-SCP-Excluded.md │ ├── DOD_CC_SRG_IL5_GC-AllowList-SCP.json │ ├── DOD_CC_SRG_IL5_GC-AllowList-SCP.md │ ├── FedRAMP_All-AllowList-SCP-Excluded.md │ ├── FedRAMP_All-AllowList-SCP.json │ ├── FedRAMP_All-AllowList-SCP.md │ ├── FedRAMP_High-AllowList-SCP-Excluded.md │ ├── FedRAMP_High-AllowList-SCP.json │ ├── FedRAMP_High-AllowList-SCP.md │ ├── FedRAMP_Moderate-AllowList-SCP-Excluded.md │ ├── FedRAMP_Moderate-AllowList-SCP.json │ ├── FedRAMP_Moderate-AllowList-SCP.md │ ├── HIPAA-AllowList-SCP-Excluded.md │ ├── HIPAA-AllowList-SCP.json │ ├── HIPAA-AllowList-SCP.md │ ├── ISO-AllowList-SCP-Excluded.md │ ├── ISO-AllowList-SCP.json │ ├── ISO-AllowList-SCP.md │ ├── PCI-AllowList-SCP-Excluded.md │ ├── PCI-AllowList-SCP.json │ ├── PCI-AllowList-SCP.md │ ├── SOC-AllowList-SCP-Excluded.md │ ├── SOC-AllowList-SCP.json │ └── SOC-AllowList-SCP.md ├── 0.2.15 │ ├── All-AllowList-SCP-Excluded.md │ ├── All-AllowList-SCP.json │ ├── All-AllowList-SCP.md │ ├── Commercial-AllowList-SCP-Excluded.md │ ├── Commercial-AllowList-SCP.json │ ├── Commercial-AllowList-SCP.md │ ├── DOD_CC_SRG_IL2_EW-AllowList-SCP-Excluded.md │ ├── DOD_CC_SRG_IL2_EW-AllowList-SCP.json │ ├── DOD_CC_SRG_IL2_EW-AllowList-SCP.md │ ├── DOD_CC_SRG_IL2_GC-AllowList-SCP-Excluded.md │ ├── DOD_CC_SRG_IL2_GC-AllowList-SCP.json │ ├── DOD_CC_SRG_IL2_GC-AllowList-SCP.md │ ├── DOD_CC_SRG_IL4_GC-AllowList-SCP-Excluded.md │ ├── DOD_CC_SRG_IL4_GC-AllowList-SCP.json │ ├── DOD_CC_SRG_IL4_GC-AllowList-SCP.md │ ├── DOD_CC_SRG_IL5_GC-AllowList-SCP-Excluded.md │ ├── DOD_CC_SRG_IL5_GC-AllowList-SCP.json │ ├── DOD_CC_SRG_IL5_GC-AllowList-SCP.md │ ├── FedRAMP_All-AllowList-SCP-Excluded.md │ ├── FedRAMP_All-AllowList-SCP.json │ ├── FedRAMP_All-AllowList-SCP.md │ ├── FedRAMP_High-AllowList-SCP-Excluded.md │ ├── FedRAMP_High-AllowList-SCP.json │ ├── FedRAMP_High-AllowList-SCP.md │ ├── FedRAMP_Moderate-AllowList-SCP-Excluded.md │ ├── FedRAMP_Moderate-AllowList-SCP.json │ ├── FedRAMP_Moderate-AllowList-SCP.md │ ├── HIPAA-AllowList-SCP-Excluded.md │ ├── HIPAA-AllowList-SCP.json │ ├── HIPAA-AllowList-SCP.md │ ├── ISO-AllowList-SCP-Excluded.md │ ├── ISO-AllowList-SCP.json │ ├── ISO-AllowList-SCP.md │ ├── PCI-AllowList-SCP-Excluded.md │ ├── PCI-AllowList-SCP.json │ ├── PCI-AllowList-SCP.md │ ├── SOC-AllowList-SCP-Excluded.md │ ├── SOC-AllowList-SCP.json │ └── SOC-AllowList-SCP.md ├── 0.2.2 │ ├── All-AllowList-SCP.json │ ├── All-AllowList-SCP.md │ ├── Commercial-AllowList-SCP.json │ ├── Commercial-AllowList-SCP.md │ ├── FedRAMP_All-AllowList-SCP.json │ ├── FedRAMP_All-AllowList-SCP.md │ ├── FedRAMP_High-AllowList-SCP.json │ ├── FedRAMP_High-AllowList-SCP.md │ ├── FedRAMP_Moderate-AllowList-SCP.json │ ├── FedRAMP_Moderate-AllowList-SCP.md │ ├── HIPAA-AllowList-SCP.json │ ├── HIPAA-AllowList-SCP.md │ ├── ISO-AllowList-SCP.json │ ├── ISO-AllowList-SCP.md │ ├── PCI-AllowList-SCP.json │ ├── PCI-AllowList-SCP.md │ ├── SOC-AllowList-SCP.json │ └── SOC-AllowList-SCP.md ├── 0.2.3 │ ├── All-AllowList-SCP.json │ ├── All-AllowList-SCP.md │ ├── Commercial-AllowList-SCP.json │ ├── Commercial-AllowList-SCP.md │ ├── FedRAMP_All-AllowList-SCP.json │ ├── FedRAMP_All-AllowList-SCP.md │ ├── FedRAMP_High-AllowList-SCP.json │ ├── FedRAMP_High-AllowList-SCP.md │ ├── FedRAMP_Moderate-AllowList-SCP.json │ ├── FedRAMP_Moderate-AllowList-SCP.md │ ├── HIPAA-AllowList-SCP.json │ ├── HIPAA-AllowList-SCP.md │ ├── ISO-AllowList-SCP.json │ ├── ISO-AllowList-SCP.md │ ├── PCI-AllowList-SCP.json │ ├── PCI-AllowList-SCP.md │ ├── SOC-AllowList-SCP.json │ └── SOC-AllowList-SCP.md ├── 0.2.4 │ ├── All-AllowList-SCP-Excluded.md │ ├── All-AllowList-SCP.json │ ├── All-AllowList-SCP.md │ ├── Commercial-AllowList-SCP-Excluded.md │ ├── Commercial-AllowList-SCP.json │ ├── Commercial-AllowList-SCP.md │ ├── FedRAMP_All-AllowList-SCP-Excluded.md │ ├── FedRAMP_All-AllowList-SCP.json │ ├── FedRAMP_All-AllowList-SCP.md │ ├── FedRAMP_High-AllowList-SCP-Excluded.md │ ├── FedRAMP_High-AllowList-SCP.json │ ├── FedRAMP_High-AllowList-SCP.md │ ├── FedRAMP_Moderate-AllowList-SCP-Excluded.md │ ├── FedRAMP_Moderate-AllowList-SCP.json │ ├── FedRAMP_Moderate-AllowList-SCP.md │ ├── HIPAA-AllowList-SCP-Excluded.md │ ├── HIPAA-AllowList-SCP.json │ ├── HIPAA-AllowList-SCP.md │ ├── ISO-AllowList-SCP-Excluded.md │ ├── ISO-AllowList-SCP.json │ ├── ISO-AllowList-SCP.md │ ├── PCI-AllowList-SCP-Excluded.md │ ├── PCI-AllowList-SCP.json │ ├── PCI-AllowList-SCP.md │ ├── SOC-AllowList-SCP-Excluded.md │ ├── SOC-AllowList-SCP.json │ └── SOC-AllowList-SCP.md ├── 0.2.5 │ ├── All-AllowList-SCP-Excluded.md │ ├── All-AllowList-SCP.json │ ├── All-AllowList-SCP.md │ ├── Commercial-AllowList-SCP-Excluded.md │ ├── Commercial-AllowList-SCP.json │ ├── Commercial-AllowList-SCP.md │ ├── FedRAMP_All-AllowList-SCP-Excluded.md │ ├── FedRAMP_All-AllowList-SCP.json │ ├── FedRAMP_All-AllowList-SCP.md │ ├── FedRAMP_High-AllowList-SCP-Excluded.md │ ├── FedRAMP_High-AllowList-SCP.json │ ├── FedRAMP_High-AllowList-SCP.md │ ├── FedRAMP_Moderate-AllowList-SCP-Excluded.md │ ├── FedRAMP_Moderate-AllowList-SCP.json │ ├── FedRAMP_Moderate-AllowList-SCP.md │ ├── HIPAA-AllowList-SCP-Excluded.md │ ├── HIPAA-AllowList-SCP.json │ ├── HIPAA-AllowList-SCP.md │ ├── ISO-AllowList-SCP-Excluded.md │ ├── ISO-AllowList-SCP.json │ ├── ISO-AllowList-SCP.md │ ├── PCI-AllowList-SCP-Excluded.md │ ├── PCI-AllowList-SCP.json │ ├── PCI-AllowList-SCP.md │ ├── SOC-AllowList-SCP-Excluded.md │ ├── SOC-AllowList-SCP.json │ └── SOC-AllowList-SCP.md ├── 0.2.6 │ ├── All-AllowList-SCP-Excluded.md │ ├── All-AllowList-SCP.json │ ├── All-AllowList-SCP.md │ ├── Commercial-AllowList-SCP-Excluded.md │ ├── Commercial-AllowList-SCP.json │ ├── Commercial-AllowList-SCP.md │ ├── FedRAMP_All-AllowList-SCP-Excluded.md │ ├── FedRAMP_All-AllowList-SCP.json │ ├── FedRAMP_All-AllowList-SCP.md │ ├── FedRAMP_High-AllowList-SCP-Excluded.md │ ├── FedRAMP_High-AllowList-SCP.json │ ├── FedRAMP_High-AllowList-SCP.md │ ├── FedRAMP_Moderate-AllowList-SCP-Excluded.md │ ├── FedRAMP_Moderate-AllowList-SCP.json │ ├── FedRAMP_Moderate-AllowList-SCP.md │ ├── HIPAA-AllowList-SCP-Excluded.md │ ├── HIPAA-AllowList-SCP.json │ ├── HIPAA-AllowList-SCP.md │ ├── ISO-AllowList-SCP-Excluded.md │ ├── ISO-AllowList-SCP.json │ ├── ISO-AllowList-SCP.md │ ├── PCI-AllowList-SCP-Excluded.md │ ├── PCI-AllowList-SCP.json │ ├── PCI-AllowList-SCP.md │ ├── SOC-AllowList-SCP-Excluded.md │ ├── SOC-AllowList-SCP.json │ └── SOC-AllowList-SCP.md ├── 0.2.7 │ ├── All-AllowList-SCP-Excluded.md │ ├── All-AllowList-SCP.json │ ├── All-AllowList-SCP.md │ ├── Commercial-AllowList-SCP-Excluded.md │ ├── Commercial-AllowList-SCP.json │ ├── Commercial-AllowList-SCP.md │ ├── DOD_CC_SRG_IL2_EW-AllowList-SCP-Excluded.md │ ├── DOD_CC_SRG_IL2_EW-AllowList-SCP.json │ ├── DOD_CC_SRG_IL2_EW-AllowList-SCP.md │ ├── DOD_CC_SRG_IL2_GC-AllowList-SCP-Excluded.md │ ├── DOD_CC_SRG_IL2_GC-AllowList-SCP.json │ ├── DOD_CC_SRG_IL2_GC-AllowList-SCP.md │ ├── DOD_CC_SRG_IL4_GC-AllowList-SCP-Excluded.md │ ├── DOD_CC_SRG_IL4_GC-AllowList-SCP.json │ ├── DOD_CC_SRG_IL4_GC-AllowList-SCP.md │ ├── DOD_CC_SRG_IL5_GC-AllowList-SCP-Excluded.md │ ├── DOD_CC_SRG_IL5_GC-AllowList-SCP.json │ ├── DOD_CC_SRG_IL5_GC-AllowList-SCP.md │ ├── FedRAMP_All-AllowList-SCP-Excluded.md │ ├── FedRAMP_All-AllowList-SCP.json │ ├── FedRAMP_All-AllowList-SCP.md │ ├── FedRAMP_High-AllowList-SCP-Excluded.md │ ├── FedRAMP_High-AllowList-SCP.json │ ├── FedRAMP_High-AllowList-SCP.md │ ├── FedRAMP_Moderate-AllowList-SCP-Excluded.md │ ├── FedRAMP_Moderate-AllowList-SCP.json │ ├── FedRAMP_Moderate-AllowList-SCP.md │ ├── HIPAA-AllowList-SCP-Excluded.md │ ├── HIPAA-AllowList-SCP.json │ ├── HIPAA-AllowList-SCP.md │ ├── ISO-AllowList-SCP-Excluded.md │ ├── ISO-AllowList-SCP.json │ ├── ISO-AllowList-SCP.md │ ├── PCI-AllowList-SCP-Excluded.md │ ├── PCI-AllowList-SCP.json │ ├── PCI-AllowList-SCP.md │ ├── SOC-AllowList-SCP-Excluded.md │ ├── SOC-AllowList-SCP.json │ └── SOC-AllowList-SCP.md ├── latest │ ├── All-AllowList-SCP-Excluded.md │ ├── All-AllowList-SCP.json │ ├── All-AllowList-SCP.md │ ├── Commercial-AllowList-SCP-Excluded.md │ ├── Commercial-AllowList-SCP.json │ ├── Commercial-AllowList-SCP.md │ ├── DOD_CC_SRG_IL2_EW-AllowList-SCP-Excluded.md │ ├── DOD_CC_SRG_IL2_EW-AllowList-SCP.json │ ├── DOD_CC_SRG_IL2_EW-AllowList-SCP.md │ ├── DOD_CC_SRG_IL2_GC-AllowList-SCP-Excluded.md │ ├── DOD_CC_SRG_IL2_GC-AllowList-SCP.json │ ├── DOD_CC_SRG_IL2_GC-AllowList-SCP.md │ ├── DOD_CC_SRG_IL4_GC-AllowList-SCP-Excluded.md │ ├── DOD_CC_SRG_IL4_GC-AllowList-SCP.json │ ├── DOD_CC_SRG_IL4_GC-AllowList-SCP.md │ ├── DOD_CC_SRG_IL5_GC-AllowList-SCP-Excluded.md │ ├── DOD_CC_SRG_IL5_GC-AllowList-SCP.json │ ├── DOD_CC_SRG_IL5_GC-AllowList-SCP.md │ ├── FedRAMP_All-AllowList-SCP-Excluded.md │ ├── FedRAMP_All-AllowList-SCP.json │ ├── FedRAMP_All-AllowList-SCP.md │ ├── FedRAMP_High-AllowList-SCP-Excluded.md │ ├── FedRAMP_High-AllowList-SCP.json │ ├── FedRAMP_High-AllowList-SCP.md │ ├── FedRAMP_Moderate-AllowList-SCP-Excluded.md │ ├── FedRAMP_Moderate-AllowList-SCP.json │ ├── FedRAMP_Moderate-AllowList-SCP.md │ ├── HIPAA-AllowList-SCP-Excluded.md │ ├── HIPAA-AllowList-SCP.json │ ├── HIPAA-AllowList-SCP.md │ ├── ISO-AllowList-SCP-Excluded.md │ ├── ISO-AllowList-SCP.json │ ├── ISO-AllowList-SCP.md │ ├── PCI-AllowList-SCP-Excluded.md │ ├── PCI-AllowList-SCP.json │ ├── PCI-AllowList-SCP.md │ ├── README.md │ ├── SOC-AllowList-SCP-Excluded.md │ ├── SOC-AllowList-SCP.json │ └── SOC-AllowList-SCP.md └── media │ ├── aws-allowlister-v2.gif │ └── aws-allowlister.gif ├── setup.cfg ├── setup.py ├── test ├── __init__.py ├── command │ ├── __init__.py │ ├── exclude-example.yml │ └── test_generate.py ├── database │ ├── __init__.py │ ├── test_compliance_data.py │ ├── test_raw_scraping_data.py │ └── test_transformed_data.py ├── scrapers │ ├── __init__.py │ ├── test_dodccsrg_il2_ew_matches.py │ ├── test_dodccsrg_il2_gc_matches.py │ ├── test_dodccsrg_il4_gc_matches.py │ ├── test_dodccsrg_il5_gc_matches.py │ ├── test_fedramp_high_matches.py │ ├── test_hipaa_matches.py │ ├── test_hitrust_matches.py │ ├── test_irap_matches.py │ ├── test_iso_matches.py │ ├── test_override_fixes.py │ ├── test_overrides.py │ └── test_standard_table_matches.py └── shared │ ├── __init__.py │ └── test_utils.py └── utils ├── bump-version.sh ├── config.json ├── generate_new_scps.sh └── update_data.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/.github/PULL_REQUEST_TEMPLATE -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/bump-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/.github/workflows/bump-version.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/python-dependency-updater.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/.github/workflows/python-dependency-updater.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/update-compliance-data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/.github/workflows/update-compliance-data.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/.pylintrc -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /HomebrewFormula/aws-allowlister.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/HomebrewFormula/aws-allowlister.rb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/Makefile -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/SECURITY.md -------------------------------------------------------------------------------- /aws_allowlister/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/aws_allowlister/__init__.py -------------------------------------------------------------------------------- /aws_allowlister/bin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aws_allowlister/bin/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/aws_allowlister/bin/cli.py -------------------------------------------------------------------------------- /aws_allowlister/bin/version.py: -------------------------------------------------------------------------------- 1 | # pylint: disable=missing-module-docstring 2 | __version__ = '0.2.15' -------------------------------------------------------------------------------- /aws_allowlister/command/__init__.py: -------------------------------------------------------------------------------- 1 | from aws_allowlister.command import generate 2 | -------------------------------------------------------------------------------- /aws_allowlister/command/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/aws_allowlister/command/generate.py -------------------------------------------------------------------------------- /aws_allowlister/data/compliance.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/aws_allowlister/data/compliance.db -------------------------------------------------------------------------------- /aws_allowlister/data/compliance_statuses.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/aws_allowlister/data/compliance_statuses.csv -------------------------------------------------------------------------------- /aws_allowlister/data/hipaa-eligible-services-reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/aws_allowlister/data/hipaa-eligible-services-reference.html -------------------------------------------------------------------------------- /aws_allowlister/data/iso-certified.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/aws_allowlister/data/iso-certified.html -------------------------------------------------------------------------------- /aws_allowlister/data/overrides.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/aws_allowlister/data/overrides.yml -------------------------------------------------------------------------------- /aws_allowlister/data/services-in-scope.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/aws_allowlister/data/services-in-scope.html -------------------------------------------------------------------------------- /aws_allowlister/database/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aws_allowlister/database/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/aws_allowlister/database/build.py -------------------------------------------------------------------------------- /aws_allowlister/database/compliance_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/aws_allowlister/database/compliance_data.py -------------------------------------------------------------------------------- /aws_allowlister/database/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/aws_allowlister/database/database.py -------------------------------------------------------------------------------- /aws_allowlister/database/raw_scraping_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/aws_allowlister/database/raw_scraping_data.py -------------------------------------------------------------------------------- /aws_allowlister/database/transformed_scraping_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/aws_allowlister/database/transformed_scraping_data.py -------------------------------------------------------------------------------- /aws_allowlister/scrapers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aws_allowlister/scrapers/aws_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/aws_allowlister/scrapers/aws_docs.py -------------------------------------------------------------------------------- /aws_allowlister/scrapers/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/aws_allowlister/scrapers/common.py -------------------------------------------------------------------------------- /aws_allowlister/scrapers/overrides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/aws_allowlister/scrapers/overrides.py -------------------------------------------------------------------------------- /aws_allowlister/scrapers/tables/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aws_allowlister/scrapers/tables/dodccsrg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/aws_allowlister/scrapers/tables/dodccsrg.py -------------------------------------------------------------------------------- /aws_allowlister/scrapers/tables/fedramp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/aws_allowlister/scrapers/tables/fedramp.py -------------------------------------------------------------------------------- /aws_allowlister/scrapers/tables/hipaa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/aws_allowlister/scrapers/tables/hipaa.py -------------------------------------------------------------------------------- /aws_allowlister/scrapers/tables/hitrust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/aws_allowlister/scrapers/tables/hitrust.py -------------------------------------------------------------------------------- /aws_allowlister/scrapers/tables/iso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/aws_allowlister/scrapers/tables/iso.py -------------------------------------------------------------------------------- /aws_allowlister/scrapers/tables/standard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/aws_allowlister/scrapers/tables/standard.py -------------------------------------------------------------------------------- /aws_allowlister/shared/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aws_allowlister/shared/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/aws_allowlister/shared/utils.py -------------------------------------------------------------------------------- /examples/0.0.3/All-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.0.3/All-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.0.3/FedRAMP_All-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.0.3/FedRAMP_All-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.0.3/FedRAMP_High-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.0.3/FedRAMP_High-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.0.3/FedRAMP_Moderate-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.0.3/FedRAMP_Moderate-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.0.3/HIPAA-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.0.3/HIPAA-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.0.3/ISO-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.0.3/ISO-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.0.3/PCI-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.0.3/PCI-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.0.3/SOC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.0.3/SOC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.0.4/All-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.0.4/All-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.0.4/FedRAMP_All-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.0.4/FedRAMP_All-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.0.4/FedRAMP_High-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.0.4/FedRAMP_High-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.0.4/FedRAMP_Moderate-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.0.4/FedRAMP_Moderate-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.0.4/HIPAA-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.0.4/HIPAA-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.0.4/ISO-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.0.4/ISO-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.0.4/PCI-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.0.4/PCI-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.0.4/SOC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.0.4/SOC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.1.0/All-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.1.0/All-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.1.0/FedRAMP_All-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.1.0/FedRAMP_All-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.1.0/FedRAMP_High-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.1.0/FedRAMP_High-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.1.0/FedRAMP_Moderate-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.1.0/FedRAMP_Moderate-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.1.0/HIPAA-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.1.0/HIPAA-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.1.0/ISO-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.1.0/ISO-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.1.0/PCI-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.1.0/PCI-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.1.0/SOC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.1.0/SOC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.1.2/All-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.1.2/All-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.1.2/FedRAMP_All-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.1.2/FedRAMP_All-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.1.2/FedRAMP_High-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.1.2/FedRAMP_High-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.1.2/FedRAMP_Moderate-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.1.2/FedRAMP_Moderate-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.1.2/HIPAA-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.1.2/HIPAA-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.1.2/ISO-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.1.2/ISO-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.1.2/PCI-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.1.2/PCI-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.1.2/SOC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.1.2/SOC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.1/All-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.1/All-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.1/FedRAMP_All-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.1/FedRAMP_All-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.1/FedRAMP_High-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.1/FedRAMP_High-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.1/FedRAMP_Moderate-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.1/FedRAMP_Moderate-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.1/HIPAA-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.1/HIPAA-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.1/ISO-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.1/ISO-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.1/PCI-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.1/PCI-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.1/SOC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.1/SOC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.11/All-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/All-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.11/All-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/All-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.11/All-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/All-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.11/Commercial-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/Commercial-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.11/Commercial-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/Commercial-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.11/Commercial-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/Commercial-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.11/DOD_CC_SRG_IL2_EW-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/DOD_CC_SRG_IL2_EW-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.11/DOD_CC_SRG_IL2_EW-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/DOD_CC_SRG_IL2_EW-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.11/DOD_CC_SRG_IL2_EW-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/DOD_CC_SRG_IL2_EW-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.11/DOD_CC_SRG_IL2_GC-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/DOD_CC_SRG_IL2_GC-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.11/DOD_CC_SRG_IL2_GC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/DOD_CC_SRG_IL2_GC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.11/DOD_CC_SRG_IL2_GC-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/DOD_CC_SRG_IL2_GC-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.11/DOD_CC_SRG_IL4_GC-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/DOD_CC_SRG_IL4_GC-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.11/DOD_CC_SRG_IL4_GC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/DOD_CC_SRG_IL4_GC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.11/DOD_CC_SRG_IL4_GC-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/DOD_CC_SRG_IL4_GC-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.11/DOD_CC_SRG_IL5_GC-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/DOD_CC_SRG_IL5_GC-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.11/DOD_CC_SRG_IL5_GC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/DOD_CC_SRG_IL5_GC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.11/DOD_CC_SRG_IL5_GC-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/DOD_CC_SRG_IL5_GC-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.11/FedRAMP_All-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/FedRAMP_All-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.11/FedRAMP_All-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/FedRAMP_All-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.11/FedRAMP_All-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/FedRAMP_All-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.11/FedRAMP_High-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/FedRAMP_High-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.11/FedRAMP_High-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/FedRAMP_High-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.11/FedRAMP_High-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/FedRAMP_High-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.11/FedRAMP_Moderate-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/FedRAMP_Moderate-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.11/FedRAMP_Moderate-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/FedRAMP_Moderate-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.11/FedRAMP_Moderate-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/FedRAMP_Moderate-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.11/HIPAA-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/HIPAA-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.11/HIPAA-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/HIPAA-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.11/HIPAA-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/HIPAA-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.11/ISO-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/ISO-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.11/ISO-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/ISO-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.11/ISO-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/ISO-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.11/PCI-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/PCI-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.11/PCI-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/PCI-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.11/PCI-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/PCI-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.11/SOC-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/SOC-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.11/SOC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/SOC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.11/SOC-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.11/SOC-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.12/All-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/All-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.12/All-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/All-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.12/All-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/All-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.12/Commercial-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/Commercial-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.12/Commercial-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/Commercial-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.12/Commercial-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/Commercial-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.12/DOD_CC_SRG_IL2_EW-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/DOD_CC_SRG_IL2_EW-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.12/DOD_CC_SRG_IL2_EW-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/DOD_CC_SRG_IL2_EW-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.12/DOD_CC_SRG_IL2_EW-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/DOD_CC_SRG_IL2_EW-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.12/DOD_CC_SRG_IL2_GC-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/DOD_CC_SRG_IL2_GC-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.12/DOD_CC_SRG_IL2_GC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/DOD_CC_SRG_IL2_GC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.12/DOD_CC_SRG_IL2_GC-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/DOD_CC_SRG_IL2_GC-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.12/DOD_CC_SRG_IL4_GC-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/DOD_CC_SRG_IL4_GC-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.12/DOD_CC_SRG_IL4_GC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/DOD_CC_SRG_IL4_GC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.12/DOD_CC_SRG_IL4_GC-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/DOD_CC_SRG_IL4_GC-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.12/DOD_CC_SRG_IL5_GC-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/DOD_CC_SRG_IL5_GC-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.12/DOD_CC_SRG_IL5_GC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/DOD_CC_SRG_IL5_GC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.12/DOD_CC_SRG_IL5_GC-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/DOD_CC_SRG_IL5_GC-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.12/FedRAMP_All-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/FedRAMP_All-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.12/FedRAMP_All-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/FedRAMP_All-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.12/FedRAMP_All-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/FedRAMP_All-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.12/FedRAMP_High-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/FedRAMP_High-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.12/FedRAMP_High-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/FedRAMP_High-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.12/FedRAMP_High-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/FedRAMP_High-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.12/FedRAMP_Moderate-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/FedRAMP_Moderate-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.12/FedRAMP_Moderate-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/FedRAMP_Moderate-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.12/FedRAMP_Moderate-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/FedRAMP_Moderate-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.12/HIPAA-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/HIPAA-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.12/HIPAA-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/HIPAA-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.12/HIPAA-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/HIPAA-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.12/ISO-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/ISO-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.12/ISO-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/ISO-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.12/ISO-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/ISO-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.12/PCI-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/PCI-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.12/PCI-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/PCI-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.12/PCI-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/PCI-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.12/SOC-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/SOC-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.12/SOC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/SOC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.12/SOC-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.12/SOC-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.13/All-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/All-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.13/All-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/All-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.13/All-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/All-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.13/Commercial-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/Commercial-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.13/Commercial-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/Commercial-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.13/Commercial-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/Commercial-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.13/DOD_CC_SRG_IL2_EW-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/DOD_CC_SRG_IL2_EW-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.13/DOD_CC_SRG_IL2_EW-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/DOD_CC_SRG_IL2_EW-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.13/DOD_CC_SRG_IL2_EW-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/DOD_CC_SRG_IL2_EW-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.13/DOD_CC_SRG_IL2_GC-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/DOD_CC_SRG_IL2_GC-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.13/DOD_CC_SRG_IL2_GC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/DOD_CC_SRG_IL2_GC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.13/DOD_CC_SRG_IL2_GC-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/DOD_CC_SRG_IL2_GC-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.13/DOD_CC_SRG_IL4_GC-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/DOD_CC_SRG_IL4_GC-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.13/DOD_CC_SRG_IL4_GC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/DOD_CC_SRG_IL4_GC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.13/DOD_CC_SRG_IL4_GC-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/DOD_CC_SRG_IL4_GC-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.13/DOD_CC_SRG_IL5_GC-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/DOD_CC_SRG_IL5_GC-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.13/DOD_CC_SRG_IL5_GC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/DOD_CC_SRG_IL5_GC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.13/DOD_CC_SRG_IL5_GC-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/DOD_CC_SRG_IL5_GC-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.13/FedRAMP_All-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/FedRAMP_All-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.13/FedRAMP_All-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/FedRAMP_All-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.13/FedRAMP_All-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/FedRAMP_All-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.13/FedRAMP_High-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/FedRAMP_High-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.13/FedRAMP_High-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/FedRAMP_High-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.13/FedRAMP_High-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/FedRAMP_High-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.13/FedRAMP_Moderate-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/FedRAMP_Moderate-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.13/FedRAMP_Moderate-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/FedRAMP_Moderate-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.13/FedRAMP_Moderate-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/FedRAMP_Moderate-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.13/HIPAA-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/HIPAA-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.13/HIPAA-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/HIPAA-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.13/HIPAA-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/HIPAA-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.13/ISO-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/ISO-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.13/ISO-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/ISO-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.13/ISO-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/ISO-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.13/PCI-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/PCI-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.13/PCI-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/PCI-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.13/PCI-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/PCI-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.13/SOC-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/SOC-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.13/SOC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/SOC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.13/SOC-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.13/SOC-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.14/All-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/All-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.14/All-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/All-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.14/All-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/All-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.14/Commercial-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/Commercial-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.14/Commercial-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/Commercial-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.14/Commercial-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/Commercial-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.14/DOD_CC_SRG_IL2_EW-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/DOD_CC_SRG_IL2_EW-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.14/DOD_CC_SRG_IL2_EW-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/DOD_CC_SRG_IL2_EW-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.14/DOD_CC_SRG_IL2_EW-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/DOD_CC_SRG_IL2_EW-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.14/DOD_CC_SRG_IL2_GC-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/DOD_CC_SRG_IL2_GC-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.14/DOD_CC_SRG_IL2_GC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/DOD_CC_SRG_IL2_GC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.14/DOD_CC_SRG_IL2_GC-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/DOD_CC_SRG_IL2_GC-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.14/DOD_CC_SRG_IL4_GC-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/DOD_CC_SRG_IL4_GC-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.14/DOD_CC_SRG_IL4_GC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/DOD_CC_SRG_IL4_GC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.14/DOD_CC_SRG_IL4_GC-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/DOD_CC_SRG_IL4_GC-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.14/DOD_CC_SRG_IL5_GC-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/DOD_CC_SRG_IL5_GC-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.14/DOD_CC_SRG_IL5_GC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/DOD_CC_SRG_IL5_GC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.14/DOD_CC_SRG_IL5_GC-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/DOD_CC_SRG_IL5_GC-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.14/FedRAMP_All-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/FedRAMP_All-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.14/FedRAMP_All-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/FedRAMP_All-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.14/FedRAMP_All-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/FedRAMP_All-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.14/FedRAMP_High-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/FedRAMP_High-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.14/FedRAMP_High-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/FedRAMP_High-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.14/FedRAMP_High-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/FedRAMP_High-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.14/FedRAMP_Moderate-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/FedRAMP_Moderate-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.14/FedRAMP_Moderate-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/FedRAMP_Moderate-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.14/FedRAMP_Moderate-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/FedRAMP_Moderate-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.14/HIPAA-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/HIPAA-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.14/HIPAA-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/HIPAA-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.14/HIPAA-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/HIPAA-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.14/ISO-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/ISO-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.14/ISO-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/ISO-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.14/ISO-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/ISO-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.14/PCI-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/PCI-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.14/PCI-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/PCI-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.14/PCI-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/PCI-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.14/SOC-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/SOC-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.14/SOC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/SOC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.14/SOC-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.14/SOC-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.15/All-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/All-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.15/All-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/All-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.15/All-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/All-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.15/Commercial-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/Commercial-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.15/Commercial-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/Commercial-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.15/Commercial-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/Commercial-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.15/DOD_CC_SRG_IL2_EW-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/DOD_CC_SRG_IL2_EW-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.15/DOD_CC_SRG_IL2_EW-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/DOD_CC_SRG_IL2_EW-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.15/DOD_CC_SRG_IL2_EW-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/DOD_CC_SRG_IL2_EW-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.15/DOD_CC_SRG_IL2_GC-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/DOD_CC_SRG_IL2_GC-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.15/DOD_CC_SRG_IL2_GC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/DOD_CC_SRG_IL2_GC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.15/DOD_CC_SRG_IL2_GC-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/DOD_CC_SRG_IL2_GC-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.15/DOD_CC_SRG_IL4_GC-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/DOD_CC_SRG_IL4_GC-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.15/DOD_CC_SRG_IL4_GC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/DOD_CC_SRG_IL4_GC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.15/DOD_CC_SRG_IL4_GC-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/DOD_CC_SRG_IL4_GC-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.15/DOD_CC_SRG_IL5_GC-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/DOD_CC_SRG_IL5_GC-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.15/DOD_CC_SRG_IL5_GC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/DOD_CC_SRG_IL5_GC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.15/DOD_CC_SRG_IL5_GC-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/DOD_CC_SRG_IL5_GC-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.15/FedRAMP_All-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/FedRAMP_All-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.15/FedRAMP_All-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/FedRAMP_All-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.15/FedRAMP_All-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/FedRAMP_All-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.15/FedRAMP_High-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/FedRAMP_High-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.15/FedRAMP_High-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/FedRAMP_High-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.15/FedRAMP_High-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/FedRAMP_High-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.15/FedRAMP_Moderate-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/FedRAMP_Moderate-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.15/FedRAMP_Moderate-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/FedRAMP_Moderate-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.15/FedRAMP_Moderate-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/FedRAMP_Moderate-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.15/HIPAA-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/HIPAA-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.15/HIPAA-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/HIPAA-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.15/HIPAA-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/HIPAA-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.15/ISO-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/ISO-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.15/ISO-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/ISO-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.15/ISO-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/ISO-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.15/PCI-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/PCI-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.15/PCI-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/PCI-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.15/PCI-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/PCI-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.15/SOC-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/SOC-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.15/SOC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/SOC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.15/SOC-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.15/SOC-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.2/All-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.2/All-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.2/All-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.2/All-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.2/Commercial-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.2/Commercial-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.2/Commercial-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.2/Commercial-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.2/FedRAMP_All-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.2/FedRAMP_All-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.2/FedRAMP_All-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.2/FedRAMP_All-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.2/FedRAMP_High-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.2/FedRAMP_High-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.2/FedRAMP_High-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.2/FedRAMP_High-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.2/FedRAMP_Moderate-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.2/FedRAMP_Moderate-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.2/FedRAMP_Moderate-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.2/FedRAMP_Moderate-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.2/HIPAA-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.2/HIPAA-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.2/HIPAA-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.2/HIPAA-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.2/ISO-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.2/ISO-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.2/ISO-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.2/ISO-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.2/PCI-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.2/PCI-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.2/PCI-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.2/PCI-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.2/SOC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.2/SOC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.2/SOC-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.2/SOC-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.3/All-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.3/All-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.3/All-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.3/All-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.3/Commercial-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.3/Commercial-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.3/Commercial-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.3/Commercial-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.3/FedRAMP_All-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.3/FedRAMP_All-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.3/FedRAMP_All-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.3/FedRAMP_All-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.3/FedRAMP_High-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.3/FedRAMP_High-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.3/FedRAMP_High-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.3/FedRAMP_High-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.3/FedRAMP_Moderate-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.3/FedRAMP_Moderate-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.3/FedRAMP_Moderate-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.3/FedRAMP_Moderate-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.3/HIPAA-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.3/HIPAA-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.3/HIPAA-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.3/HIPAA-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.3/ISO-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.3/ISO-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.3/ISO-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.3/ISO-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.3/PCI-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.3/PCI-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.3/PCI-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.3/PCI-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.3/SOC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.3/SOC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.3/SOC-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.3/SOC-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.4/All-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.4/All-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.4/All-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.4/All-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.4/All-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.4/All-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.4/Commercial-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.4/Commercial-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.4/Commercial-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.4/Commercial-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.4/Commercial-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.4/Commercial-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.4/FedRAMP_All-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.4/FedRAMP_All-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.4/FedRAMP_All-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.4/FedRAMP_All-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.4/FedRAMP_All-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.4/FedRAMP_All-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.4/FedRAMP_High-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.4/FedRAMP_High-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.4/FedRAMP_High-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.4/FedRAMP_High-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.4/FedRAMP_High-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.4/FedRAMP_High-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.4/FedRAMP_Moderate-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.4/FedRAMP_Moderate-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.4/FedRAMP_Moderate-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.4/FedRAMP_Moderate-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.4/FedRAMP_Moderate-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.4/FedRAMP_Moderate-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.4/HIPAA-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.4/HIPAA-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.4/HIPAA-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.4/HIPAA-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.4/HIPAA-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.4/HIPAA-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.4/ISO-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.4/ISO-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.4/ISO-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.4/ISO-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.4/ISO-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.4/ISO-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.4/PCI-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.4/PCI-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.4/PCI-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.4/PCI-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.4/PCI-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.4/PCI-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.4/SOC-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.4/SOC-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.4/SOC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.4/SOC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.4/SOC-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.4/SOC-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.5/All-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.5/All-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.5/All-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.5/All-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.5/All-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.5/All-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.5/Commercial-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.5/Commercial-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.5/Commercial-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.5/Commercial-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.5/Commercial-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.5/Commercial-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.5/FedRAMP_All-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.5/FedRAMP_All-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.5/FedRAMP_All-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.5/FedRAMP_All-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.5/FedRAMP_All-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.5/FedRAMP_All-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.5/FedRAMP_High-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.5/FedRAMP_High-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.5/FedRAMP_High-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.5/FedRAMP_High-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.5/FedRAMP_High-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.5/FedRAMP_High-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.5/FedRAMP_Moderate-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.5/FedRAMP_Moderate-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.5/FedRAMP_Moderate-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.5/FedRAMP_Moderate-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.5/FedRAMP_Moderate-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.5/FedRAMP_Moderate-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.5/HIPAA-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.5/HIPAA-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.5/HIPAA-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.5/HIPAA-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.5/HIPAA-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.5/HIPAA-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.5/ISO-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.5/ISO-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.5/ISO-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.5/ISO-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.5/ISO-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.5/ISO-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.5/PCI-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.5/PCI-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.5/PCI-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.5/PCI-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.5/PCI-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.5/PCI-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.5/SOC-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.5/SOC-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.5/SOC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.5/SOC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.5/SOC-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.5/SOC-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.6/All-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.6/All-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.6/All-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.6/All-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.6/All-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.6/All-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.6/Commercial-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.6/Commercial-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.6/Commercial-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.6/Commercial-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.6/Commercial-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.6/Commercial-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.6/FedRAMP_All-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.6/FedRAMP_All-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.6/FedRAMP_All-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.6/FedRAMP_All-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.6/FedRAMP_All-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.6/FedRAMP_All-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.6/FedRAMP_High-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.6/FedRAMP_High-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.6/FedRAMP_High-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.6/FedRAMP_High-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.6/FedRAMP_High-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.6/FedRAMP_High-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.6/FedRAMP_Moderate-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.6/FedRAMP_Moderate-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.6/FedRAMP_Moderate-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.6/FedRAMP_Moderate-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.6/FedRAMP_Moderate-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.6/FedRAMP_Moderate-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.6/HIPAA-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.6/HIPAA-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.6/HIPAA-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.6/HIPAA-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.6/HIPAA-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.6/HIPAA-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.6/ISO-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.6/ISO-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.6/ISO-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.6/ISO-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.6/ISO-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.6/ISO-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.6/PCI-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.6/PCI-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.6/PCI-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.6/PCI-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.6/PCI-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.6/PCI-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.6/SOC-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.6/SOC-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.6/SOC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.6/SOC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.6/SOC-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.6/SOC-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.7/All-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/All-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.7/All-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/All-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.7/All-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/All-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.7/Commercial-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/Commercial-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.7/Commercial-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/Commercial-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.7/Commercial-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/Commercial-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.7/DOD_CC_SRG_IL2_EW-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/DOD_CC_SRG_IL2_EW-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.7/DOD_CC_SRG_IL2_EW-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/DOD_CC_SRG_IL2_EW-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.7/DOD_CC_SRG_IL2_EW-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/DOD_CC_SRG_IL2_EW-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.7/DOD_CC_SRG_IL2_GC-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/DOD_CC_SRG_IL2_GC-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.7/DOD_CC_SRG_IL2_GC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/DOD_CC_SRG_IL2_GC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.7/DOD_CC_SRG_IL2_GC-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/DOD_CC_SRG_IL2_GC-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.7/DOD_CC_SRG_IL4_GC-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/DOD_CC_SRG_IL4_GC-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.7/DOD_CC_SRG_IL4_GC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/DOD_CC_SRG_IL4_GC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.7/DOD_CC_SRG_IL4_GC-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/DOD_CC_SRG_IL4_GC-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.7/DOD_CC_SRG_IL5_GC-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/DOD_CC_SRG_IL5_GC-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.7/DOD_CC_SRG_IL5_GC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/DOD_CC_SRG_IL5_GC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.7/DOD_CC_SRG_IL5_GC-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/DOD_CC_SRG_IL5_GC-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.7/FedRAMP_All-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/FedRAMP_All-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.7/FedRAMP_All-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/FedRAMP_All-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.7/FedRAMP_All-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/FedRAMP_All-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.7/FedRAMP_High-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/FedRAMP_High-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.7/FedRAMP_High-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/FedRAMP_High-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.7/FedRAMP_High-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/FedRAMP_High-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.7/FedRAMP_Moderate-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/FedRAMP_Moderate-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.7/FedRAMP_Moderate-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/FedRAMP_Moderate-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.7/FedRAMP_Moderate-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/FedRAMP_Moderate-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.7/HIPAA-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/HIPAA-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.7/HIPAA-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/HIPAA-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.7/HIPAA-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/HIPAA-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.7/ISO-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/ISO-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.7/ISO-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/ISO-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.7/ISO-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/ISO-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.7/PCI-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/PCI-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.7/PCI-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/PCI-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.7/PCI-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/PCI-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/0.2.7/SOC-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/SOC-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/0.2.7/SOC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/SOC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/0.2.7/SOC-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/0.2.7/SOC-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/latest/All-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/All-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/latest/All-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/All-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/latest/All-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/All-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/latest/Commercial-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/Commercial-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/latest/Commercial-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/Commercial-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/latest/Commercial-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/Commercial-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/latest/DOD_CC_SRG_IL2_EW-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/DOD_CC_SRG_IL2_EW-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/latest/DOD_CC_SRG_IL2_EW-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/DOD_CC_SRG_IL2_EW-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/latest/DOD_CC_SRG_IL2_EW-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/DOD_CC_SRG_IL2_EW-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/latest/DOD_CC_SRG_IL2_GC-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/DOD_CC_SRG_IL2_GC-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/latest/DOD_CC_SRG_IL2_GC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/DOD_CC_SRG_IL2_GC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/latest/DOD_CC_SRG_IL2_GC-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/DOD_CC_SRG_IL2_GC-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/latest/DOD_CC_SRG_IL4_GC-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/DOD_CC_SRG_IL4_GC-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/latest/DOD_CC_SRG_IL4_GC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/DOD_CC_SRG_IL4_GC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/latest/DOD_CC_SRG_IL4_GC-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/DOD_CC_SRG_IL4_GC-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/latest/DOD_CC_SRG_IL5_GC-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/DOD_CC_SRG_IL5_GC-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/latest/DOD_CC_SRG_IL5_GC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/DOD_CC_SRG_IL5_GC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/latest/DOD_CC_SRG_IL5_GC-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/DOD_CC_SRG_IL5_GC-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/latest/FedRAMP_All-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/FedRAMP_All-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/latest/FedRAMP_All-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/FedRAMP_All-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/latest/FedRAMP_All-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/FedRAMP_All-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/latest/FedRAMP_High-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/FedRAMP_High-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/latest/FedRAMP_High-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/FedRAMP_High-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/latest/FedRAMP_High-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/FedRAMP_High-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/latest/FedRAMP_Moderate-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/FedRAMP_Moderate-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/latest/FedRAMP_Moderate-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/FedRAMP_Moderate-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/latest/FedRAMP_Moderate-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/FedRAMP_Moderate-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/latest/HIPAA-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/HIPAA-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/latest/HIPAA-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/HIPAA-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/latest/HIPAA-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/HIPAA-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/latest/ISO-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/ISO-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/latest/ISO-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/ISO-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/latest/ISO-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/ISO-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/latest/PCI-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/PCI-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/latest/PCI-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/PCI-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/latest/PCI-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/PCI-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/latest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/README.md -------------------------------------------------------------------------------- /examples/latest/SOC-AllowList-SCP-Excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/SOC-AllowList-SCP-Excluded.md -------------------------------------------------------------------------------- /examples/latest/SOC-AllowList-SCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/SOC-AllowList-SCP.json -------------------------------------------------------------------------------- /examples/latest/SOC-AllowList-SCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/latest/SOC-AllowList-SCP.md -------------------------------------------------------------------------------- /examples/media/aws-allowlister-v2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/media/aws-allowlister-v2.gif -------------------------------------------------------------------------------- /examples/media/aws-allowlister.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/examples/media/aws-allowlister.gif -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/command/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/command/exclude-example.yml: -------------------------------------------------------------------------------- 1 | - ec2 2 | - s3 -------------------------------------------------------------------------------- /test/command/test_generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/test/command/test_generate.py -------------------------------------------------------------------------------- /test/database/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/database/test_compliance_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/test/database/test_compliance_data.py -------------------------------------------------------------------------------- /test/database/test_raw_scraping_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/test/database/test_raw_scraping_data.py -------------------------------------------------------------------------------- /test/database/test_transformed_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/test/database/test_transformed_data.py -------------------------------------------------------------------------------- /test/scrapers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/scrapers/test_dodccsrg_il2_ew_matches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/test/scrapers/test_dodccsrg_il2_ew_matches.py -------------------------------------------------------------------------------- /test/scrapers/test_dodccsrg_il2_gc_matches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/test/scrapers/test_dodccsrg_il2_gc_matches.py -------------------------------------------------------------------------------- /test/scrapers/test_dodccsrg_il4_gc_matches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/test/scrapers/test_dodccsrg_il4_gc_matches.py -------------------------------------------------------------------------------- /test/scrapers/test_dodccsrg_il5_gc_matches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/test/scrapers/test_dodccsrg_il5_gc_matches.py -------------------------------------------------------------------------------- /test/scrapers/test_fedramp_high_matches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/test/scrapers/test_fedramp_high_matches.py -------------------------------------------------------------------------------- /test/scrapers/test_hipaa_matches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/test/scrapers/test_hipaa_matches.py -------------------------------------------------------------------------------- /test/scrapers/test_hitrust_matches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/test/scrapers/test_hitrust_matches.py -------------------------------------------------------------------------------- /test/scrapers/test_irap_matches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/test/scrapers/test_irap_matches.py -------------------------------------------------------------------------------- /test/scrapers/test_iso_matches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/test/scrapers/test_iso_matches.py -------------------------------------------------------------------------------- /test/scrapers/test_override_fixes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/test/scrapers/test_override_fixes.py -------------------------------------------------------------------------------- /test/scrapers/test_overrides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/test/scrapers/test_overrides.py -------------------------------------------------------------------------------- /test/scrapers/test_standard_table_matches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/test/scrapers/test_standard_table_matches.py -------------------------------------------------------------------------------- /test/shared/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/shared/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/test/shared/test_utils.py -------------------------------------------------------------------------------- /utils/bump-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/utils/bump-version.sh -------------------------------------------------------------------------------- /utils/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/utils/config.json -------------------------------------------------------------------------------- /utils/generate_new_scps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/utils/generate_new_scps.sh -------------------------------------------------------------------------------- /utils/update_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/aws-allowlister/HEAD/utils/update_data.py --------------------------------------------------------------------------------