├── backstage-assets ├── all.yaml ├── partner-offerings │ ├── aicas │ │ └── aicas-edgesuite.yaml │ ├── idemia │ │ └── digital-key.yaml │ ├── haas-alert │ │ └── safety-cloud-digital-alerting-service.yaml │ ├── uptake-technologies │ │ └── uptake-fleet.yaml │ ├── sonatus │ │ └── sonatus-collector.yaml │ ├── argus │ │ ├── sw-supply-chain-security.yaml │ │ └── managed-vehicle-security-operations-center.yaml │ ├── cerebrum-x │ │ └── connected-car-data-analytics-platform.yaml │ ├── here-technologies │ │ ├── here-tour-planning.yaml │ │ └── here-location-services.yaml │ ├── wireless-car │ │ ├── position-and-journey.yaml │ │ └── smart-ev-routing.yaml │ ├── bosch │ │ ├── leapx-hmi-sw-engineering.yaml │ │ └── automotive-data-transformer.yaml │ ├── upstream-security │ │ ├── vsoc.yaml │ │ └── upstream-api-security.yaml │ ├── azuga │ │ └── azuga-fleet.yaml │ ├── blackberry │ │ ├── cylance-cybersecurity-platform.yaml │ │ └── radar-asset-tracking-solution.yaml │ ├── excelfore │ │ └── esync-ota-agent.yaml │ ├── vicone │ │ └── xnexus-next-gen-vsoc-platform.yaml │ ├── kpit │ │ └── predictive-maintenance-for-automotive-components.yaml │ ├── palo-alto │ │ └── vm-series-ng-virtual-firewall.yaml │ ├── mongodb │ │ └── digital-vehicle-twin.yaml │ └── sibros │ │ └── deep-connected-platform.yaml └── partner-offerings.yaml ├── .markdownlint.yaml ├── CODE_OF_CONDUCT.md ├── CHANGELOG.md ├── SECURITY.md ├── NOTICE.txt ├── README.md ├── .gitignore ├── CONTRIBUTING.md └── LICENSE /backstage-assets/all.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: backstage.io/v1alpha1 2 | kind: Location 3 | metadata: 4 | name: cms-assets-all 5 | description: A collection of all CMS Assets 6 | spec: 7 | targets: 8 | - ./partner-offerings.yaml 9 | -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- 1 | default: true 2 | 3 | MD013: # Line length 4 | line_length: 120 5 | code_blocks: false 6 | 7 | MD024: # Duplicate headers 8 | siblings_only: true 9 | 10 | MD029: # Ordered list style 11 | style: "one" 12 | 13 | MD041: false # First line top-level header 14 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Code of Conduct 2 | 3 | This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct). 4 | For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact 5 | with any additional questions or comments. 6 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | All notable changes to this project will be documented in this file. 4 | 5 | The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), 6 | and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 7 | 8 | ## [1] - 2024-10-21 9 | 10 | ### Added 11 | 12 | #### Partner Offerings 13 | 14 | - All initial partner offerings. 15 | -------------------------------------------------------------------------------- /backstage-assets/partner-offerings/aicas/aicas-edgesuite.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: aws.amazon.com/v1beta1 2 | kind: PartnerOffering 3 | metadata: 4 | description: Aicas EdgeSuite empowers embedded and connected edge-to-cloud solutions. 5 | name: aicas-edgesuite 6 | tags: 7 | - edge-computing 8 | - cloud-solutions 9 | title: Aicas EdgeSuite 10 | spec: 11 | type: SaaS 12 | author: Aicas GmbH 13 | authorPageUrl: https://partners.amazonaws.com/partners/0010L00001v2Mn5QAE/ 14 | url: https://partners.amazonaws.com/partners/0010L00001v2Mn5QAE/ 15 | -------------------------------------------------------------------------------- /backstage-assets/partner-offerings/idemia/digital-key.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: aws.amazon.com/v1beta1 2 | kind: PartnerOffering 3 | metadata: 4 | description: Digital Key solution allows automakers to manage the generation and workflows of digital keys with secure storage on mobile devices. 5 | name: digital-key 6 | tags: 7 | - digital-key 8 | - security 9 | title: Digital Key 10 | spec: 11 | type: SaaS 12 | author: Idemia 13 | authorPageUrl: https://partners.amazonaws.com/partners/0010L00001v2Wn2QAE/Idemia 14 | url: https://partners.amazonaws.com/partners/0010L00001v2Wn2QAE/Idemia 15 | -------------------------------------------------------------------------------- /backstage-assets/partner-offerings/haas-alert/safety-cloud-digital-alerting-service.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: aws.amazon.com/v1beta1 2 | kind: PartnerOffering 3 | metadata: 4 | description: Cloud service that triggers digital safety alerts to be sent to drivers, ADAS, and automated driving systems. 5 | name: safety-cloud-digital-alerting-service 6 | tags: 7 | - safety-alerts 8 | - adas 9 | title: Safety Cloud Digital Alerting Service 10 | spec: 11 | type: SaaS 12 | author: HAAS Alert 13 | authorPageUrl: https://partners.amazonaws.com/partners/0010h00001kNzP0AAK/ 14 | url: https://partners.amazonaws.com/partners/0010h00001kNzP0AAK/ 15 | -------------------------------------------------------------------------------- /backstage-assets/partner-offerings/uptake-technologies/uptake-fleet.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: aws.amazon.com/v1beta1 2 | kind: PartnerOffering 3 | metadata: 4 | description: Uptake Fleet empowers your team to prevent roadside failures, reduce unplanned downtime, and optimize operating and maintenance costs. 5 | name: uptake-fleet 6 | tags: 7 | - predictive-maintenance 8 | - fleet-management 9 | title: UPTAKE FLEET 10 | spec: 11 | type: SaaS 12 | author: Uptake Technologies 13 | authorPageUrl: https://aws.amazon.com/marketplace/seller-profile?id=bc9298f1-d1e8-4e61-a0ed-c60d8a5d3042 14 | url: https://aws.amazon.com/marketplace/pp/prodview-v5n34dn3wruns 15 | -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | 2 | Reporting Security Issues 3 | ---------------------------------------------------------------------------------------------------------- 4 | 5 | We take all security reports seriously. When we receive such reports, we will investigate and 6 | subsequently address any potential vulnerabilities as quickly as possible. If you discover a potential 7 | security issue in this project, please notify AWS/Amazon Security via our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/) or 8 | directly via email to [AWS Security](mailto:aws-security@amazon.com). Please do not create a public GitHub issue in this project. 9 | -------------------------------------------------------------------------------- /backstage-assets/partner-offerings/sonatus/sonatus-collector.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: aws.amazon.com/v1beta1 2 | kind: PartnerOffering 3 | metadata: 4 | description: Sonatus Collector provides an intelligent, efficient, and flexible way to automate the collection of data for enhancing vehicle functionality and performance, troubleshooting issues, and opening new monetization opportunities. 5 | name: sonatus-collector 6 | tags: 7 | - data-collection 8 | - automotive 9 | title: Sonatus Collector 10 | spec: 11 | type: SaaS 12 | author: Sonatus 13 | authorPageUrl: https://partners.amazonaws.com/partners/0018a00001qnTLPAA2/Sonatus 14 | url: https://partners.amazonaws.com/partners/0018a00001qnTLPAA2/Sonatus 15 | -------------------------------------------------------------------------------- /backstage-assets/partner-offerings/argus/sw-supply-chain-security.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: aws.amazon.com/v1beta1 2 | kind: PartnerOffering 3 | metadata: 4 | description: SW Supply Chain Security performs automatic binary SBOM scanning for public and private vulnerabilities to comply with regulations and assure product security. 5 | name: sw-supply-chain-security 6 | tags: 7 | - supply-chain 8 | - security 9 | title: SW Supply Chain Security 10 | spec: 11 | type: SaaS 12 | author: Argus 13 | authorPageUrl: https://aws.amazon.com/marketplace/seller-profile?id=c18d1099-5095-4d06-aee4-571c7fa75620 14 | url: https://aws.amazon.com/marketplace/pp/prodview-wzx7k77dwfqis?sr=0-18&ref_=beagle&applicationId=AWSMPContessa 15 | -------------------------------------------------------------------------------- /backstage-assets/partner-offerings/cerebrum-x/connected-car-data-analytics-platform.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: aws.amazon.com/v1beta1 2 | kind: PartnerOffering 3 | metadata: 4 | description: CerebrumX's AI-driven platform collects & harmonizes data from millions of vehicles in real-time and enriches it with augmented data to generate deep & contextual insights for enterprises. 5 | name: connected-car-data-analytics-platform 6 | tags: 7 | - data-analytics 8 | - connected-car 9 | title: Connected Car Data Analytics Platform 10 | spec: 11 | type: SaaS 12 | author: CerebrumX 13 | authorPageUrl: https://partners.amazonaws.com/partners/0010h00001jCgKTAA0/ 14 | url: https://partners.amazonaws.com/partners/0010h00001jCgKTAA0/ 15 | -------------------------------------------------------------------------------- /backstage-assets/partner-offerings/here-technologies/here-tour-planning.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: aws.amazon.com/v1beta1 2 | kind: PartnerOffering 3 | metadata: 4 | description: HERE Tour Planning allows AWS developers to dynamically optimize routes for multiple vehicles visiting a set of locations given real-life constraints. 5 | name: here-tour-planning 6 | tags: 7 | - routing 8 | - logistics 9 | - optimization 10 | title: HERE Tour Planning 11 | spec: 12 | type: SaaS 13 | author: Here Technologies 14 | authorPageUrl: https://aws.amazon.com/marketplace/seller-profile?id=cc033bc0-fe05-4d79-ba58-9a132b1fe9d3 15 | url: https://aws.amazon.com/marketplace/pp/prodview-izb3zaa6bhepo?sr=0-2&ref_=beagle&applicationId=AWSMPContessa 16 | -------------------------------------------------------------------------------- /backstage-assets/partner-offerings/wireless-car/position-and-journey.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: aws.amazon.com/v1beta1 2 | kind: PartnerOffering 3 | metadata: 4 | description: Built on real-world data and learnings from millions of vehicle journeys over the course of many years, Position & Journey manages car location and trip data, allows for enrichment of that data, and provides insights on how, when, and where vehicles are driven. 5 | name: position-and-journey 6 | tags: 7 | - vehicle-data 8 | - trip-insights 9 | title: Position and Journey 10 | spec: 11 | type: SaaS 12 | author: WirelessCar 13 | authorPageUrl: https://partners.amazonaws.com/partners/001E000000te5syIAA/ 14 | url: https://partners.amazonaws.com/partners/001E000000te5syIAA/ 15 | -------------------------------------------------------------------------------- /backstage-assets/partner-offerings/wireless-car/smart-ev-routing.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: aws.amazon.com/v1beta1 2 | kind: PartnerOffering 3 | metadata: 4 | description: "WirelessCar's Smart EV Routing reduces both charge and range anxiety by providing specifically tailored navigation tools that match the EV drivers' needs. Optimized routing during long-distance drives delivers accurate charging guidance: when, where, and for how long to charge." 5 | name: smart-ev-routing 6 | tags: 7 | - ev-routing 8 | - navigation 9 | title: Smart EV Routing 10 | spec: 11 | type: SaaS 12 | author: WirelessCar 13 | authorPageUrl: https://partners.amazonaws.com/partners/001E000000te5syIAA/ 14 | url: https://partners.amazonaws.com/partners/001E000000te5syIAA/ 15 | -------------------------------------------------------------------------------- /backstage-assets/partner-offerings/bosch/leapx-hmi-sw-engineering.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: aws.amazon.com/v1beta1 2 | kind: PartnerOffering 3 | metadata: 4 | description: Cloud-based HMI Software engineering platform for Transparent & Enhanced Collaboration Experience and streamlining the HMI development workflow. 5 | name: leapx-hmi-sw-engineering 6 | tags: 7 | - hmi 8 | - software-engineering 9 | title: "LeapX: Next gen cloud based platform for HMI SW engineering:" 10 | spec: 11 | type: SaaS 12 | author: Bosch Software and Digital Solutions 13 | authorPageUrl: https://aws.amazon.com/marketplace/seller-profile?id=seller-lb37yxazfwfcm 14 | url: https://aws.amazon.com/marketplace/pp/prodview-m6gpcdop5akk4?sr=0-4&ref_=beagle&applicationId=AWSMPContessa 15 | -------------------------------------------------------------------------------- /backstage-assets/partner-offerings/upstream-security/vsoc.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: aws.amazon.com/v1beta1 2 | kind: PartnerOffering 3 | metadata: 4 | description: Built on top of Upstream's Platform, Upstream Vehicle SOC (vSOC) seamlessly integrates with the OEMs Automotive tech stack (SIEM, SOAR, CRM, etc.), allowing self-managed or MSSP remediation frameworks and playbooks to streamline incident remediation and automation. 5 | name: vsoc 6 | tags: 7 | - vsoc 8 | - cybersecurity 9 | title: Upstream Vehicle SOC (vSOC) 10 | spec: 11 | type: SaaS 12 | author: Upstream Security 13 | authorPageUrl: https://aws.amazon.com/marketplace/seller-profile?id=c2e4bab5-137c-4059-86e5-1acbca8bb7ba 14 | url: https://partners.amazonaws.com/partners/0010L00001tB2DXQA0/ 15 | -------------------------------------------------------------------------------- /backstage-assets/partner-offerings/azuga/azuga-fleet.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: aws.amazon.com/v1beta1 2 | kind: PartnerOffering 3 | metadata: 4 | description: GPS Fleet Tracking that is simple to use, affordable, and powerful enough to run any size fleet. Azuga's fleet management platform is the best solution to keep track of drivers, improve safety and protect all your assets. 5 | name: azuga-fleet 6 | tags: 7 | - fleet-management 8 | - gps-tracking 9 | title: Azuga Fleet 10 | spec: 11 | type: SaaS 12 | author: Azuga, a Bridgestone Company 13 | authorPageUrl: https://aws.amazon.com/marketplace/seller-profile?id=8f53b754-ebaa-4ddd-b88e-1efa9743dd00 14 | url: https://aws.amazon.com/marketplace/pp/prodview-2v2tfrjyzmt3q?sr=0-1&ref_=beagle&applicationId=AWSMPContessa 15 | -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- 1 | Connected Mobility Solution on AWS Public Assets 2 | 3 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 4 | Licensed under the Apache License Version 2.0 (the "License"). You may not use this file except 5 | in compliance with the License. A copy of the License is located at http://www.apache.org/licenses/ 6 | or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, 7 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, express or implied. See the License for the 8 | specific language governing permissions and limitations under the License. 9 | 10 | 11 | ********************** 12 | THIRD PARTY COMPONENTS 13 | ********************** 14 | 15 | This software includes third party software subject to the following copyrights: 16 | -------------------------------------------------------------------------------- /backstage-assets/partner-offerings/argus/managed-vehicle-security-operations-center.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: aws.amazon.com/v1beta1 2 | kind: PartnerOffering 3 | metadata: 4 | description: Argus Vehicle Security Operations Center combines technology, processes, playbooks, and a team of subject-matter experts to establish or expand a fully functional operation center for vehicle fleets. 5 | name: managed-vehicle-security-operations-center 6 | tags: 7 | - vsoc 8 | - cybersecurity 9 | title: Managed Vehicle Security Operations Center (VSOC) 10 | spec: 11 | type: SaaS 12 | author: Argus 13 | authorPageUrl: https://aws.amazon.com/marketplace/seller-profile?id=c18d1099-5095-4d06-aee4-571c7fa75620 14 | url: https://aws.amazon.com/marketplace/pp/prodview-g3knjxy3yadpi?sr=0-13&ref_=beagle&applicationId=AWSMPContessa 15 | -------------------------------------------------------------------------------- /backstage-assets/partner-offerings/blackberry/cylance-cybersecurity-platform.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: aws.amazon.com/v1beta1 2 | kind: PartnerOffering 3 | metadata: 4 | description: BlackBerry combines endpoint protection and management to prevent zero-day threats, ransomware, and phishing attacks while correlating and pinpointing threats to ensure full visibility and security coverage that spans the entire organization. 5 | name: blackberry-cylance-cybersecurity-platform 6 | tags: 7 | - endpoint-protection 8 | - cybersecurity 9 | title: BlackBerry Cylance Cybersecurity Platform 10 | spec: 11 | type: SaaS 12 | author: BlackBerry 13 | authorPageUrl: https://aws.amazon.com/marketplace/seller-profile?id=1ec08f1e-df5a-4531-94f5-fd93307cc279 14 | url: https://aws.amazon.com/marketplace/pp/prodview-j3qe23ppt5eno?did=pa_card&trk=pa_card 15 | -------------------------------------------------------------------------------- /backstage-assets/partner-offerings/excelfore/esync-ota-agent.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: aws.amazon.com/v1beta1 2 | kind: PartnerOffering 3 | metadata: 4 | description: eSync is an over-the-air (OTA) data platform to manage diverse edge devices 5 | for automotive/industrial applications. It is based on the eSync Alliance standard 6 | to support OTA updates and data gathering with a single approach across multiple 7 | vehicle brands, models and sub-models. 8 | name: esync-ota-agent-sdk-for-aws 9 | tags: 10 | - edge 11 | - ota 12 | title: eSync OTA Agent SDK for AWS 13 | spec: 14 | type: SaaS 15 | author: Excelfore 16 | authorPageUrl: https://aws.amazon.com/marketplace/seller-profile?id=77f777ac-ef56-4203-9f7d-dcfb55cb35a1 17 | url: https://aws.amazon.com/marketplace/pp/prodview-rh3fkzmvblrrc?sr=0-6&ref_=beagle&applicationId=AWSMPContessa 18 | -------------------------------------------------------------------------------- /backstage-assets/partner-offerings/blackberry/radar-asset-tracking-solution.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: aws.amazon.com/v1beta1 2 | kind: PartnerOffering 3 | metadata: 4 | description: BlackBerry Radar is a complete asset tracking solution providing reliable visibility to trailer, chassis, containers, railcars and equipment. These ruggedized devices are easy-to-install, low maintenance and long-lasting to minimize operational disruptions and maximize your ROI. 5 | name: blackberry-radar-asset-tracking-solution 6 | tags: 7 | - asset-tracking 8 | - visibility 9 | title: BlackBerry Radar Asset Tracking Solution 10 | spec: 11 | type: SaaS 12 | author: BlackBerry 13 | authorPageUrl: https://aws.amazon.com/marketplace/seller-profile?id=1ec08f1e-df5a-4531-94f5-fd93307cc279 14 | url: https://aws.amazon.com/marketplace/pp/prodview-qjtlfrnlgqxme?did=pa_card&trk=pa_card 15 | -------------------------------------------------------------------------------- /backstage-assets/partner-offerings/vicone/xnexus-next-gen-vsoc-platform.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: aws.amazon.com/v1beta1 2 | kind: PartnerOffering 3 | metadata: 4 | description: VicOne xNexus empowers the VSOC team to successfully hunt Patient Zero in nascent cyberattacks and ensure robust protection for connected vehicles and SDVs. Our xNexus achieves this by offering contextualized insights into complex attack paths, supported by over 30 years of contextualized threat intelligence. 5 | name: xnexus-next-gen-vsoc-platform 6 | tags: 7 | - vsoc 8 | - cybersecurity 9 | title: xNexus Next-Gen VSOC Platform 10 | spec: 11 | type: SaaS 12 | author: VicOne 13 | authorPageUrl: https://aws.amazon.com/marketplace/seller-profile?id=seller-ytyg2ymimzjnu 14 | url: https://aws.amazon.com/marketplace/pp/prodview-pv36syyt56zym?sr=0-1&ref_=beagle&applicationId=AWSMPContessa 15 | -------------------------------------------------------------------------------- /backstage-assets/partner-offerings/kpit/predictive-maintenance-for-automotive-components.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: aws.amazon.com/v1beta1 2 | kind: PartnerOffering 3 | metadata: 4 | description: KPIT's Remaining Useful Life (RUL) solution uses AI/ML to accurately translate data into timely, actionable insights. These insights enable the vehicle owner, OEM or mobility service provider to predict the maintenance needs of their fleet for maximum uptime, timely fixes, and higher productivity. 5 | name: predictive-maintenance-solution-for-automotive-components 6 | tags: 7 | - predictive-maintenance 8 | - ai-ml 9 | title: Predictive Maintenance Solution for Automotive Components 10 | spec: 11 | type: SaaS 12 | author: KPIT 13 | authorPageUrl: https://partners.amazonaws.com/partners/001E000000UfZqCIAV/ 14 | url: https://partners.amazonaws.com/partners/001E000000UfZqCIAV/ 15 | -------------------------------------------------------------------------------- /backstage-assets/partner-offerings/here-technologies/here-location-services.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: aws.amazon.com/v1beta1 2 | kind: PartnerOffering 3 | metadata: 4 | description: HERE Location Services allow AWS developers access to location APIs including Geocoding, Search, Maps, Navigation, Routing, Fleet Telematics and more. These REST & JavaScript APIs open new location intelligence opportunities in diverse verticals like transportation, utilities, logistics and retail. 5 | name: here-location-services 6 | tags: 7 | - location 8 | - maps 9 | - navigation 10 | title: HERE Location Services 11 | spec: 12 | type: SaaS 13 | author: Here Technologies 14 | authorPageUrl: https://aws.amazon.com/marketplace/seller-profile?id=cc033bc0-fe05-4d79-ba58-9a132b1fe9d3 15 | url: https://aws.amazon.com/marketplace/pp/prodview-hlc5los56uj3q?sr=0-1&ref_=beagle&applicationId=AWSMPContessa 16 | -------------------------------------------------------------------------------- /backstage-assets/partner-offerings/bosch/automotive-data-transformer.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: aws.amazon.com/v1beta1 2 | kind: PartnerOffering 3 | metadata: 4 | description: The Automotive Data Transformer (ADT) is a powerful cloud-based SaaS tool for fast vehicle data processing. It supports MDF format and integrates with AWS S3. With easy API calls, our SaaS resolves your challenges with MDF and enables you to extract metadata and convert signal data to Parquet, JSON or CSV securely and reliably. 5 | name: automotive-data-transformer 6 | tags: 7 | - data-processing 8 | - automotive 9 | title: Automotive Data Transformer 10 | spec: 11 | type: SaaS 12 | author: Bosch Engineering GmbH 13 | authorPageUrl: https://aws.amazon.com/marketplace/seller-profile?id=seller-lb37yxazfwfcm 14 | url: https://aws.amazon.com/marketplace/pp/prodview-zp7ws35dijn2u?sr=0-1&ref_=beagle&applicationId=AWSMPContessa 15 | -------------------------------------------------------------------------------- /backstage-assets/partner-offerings/palo-alto/vm-series-ng-virtual-firewall.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: aws.amazon.com/v1beta1 2 | kind: PartnerOffering 3 | metadata: 4 | description: Expand your coverage against command and control, web-based, file-based, DNS protocol, and other threats with industries most advanced cloud delivered security services that protect your AWS workloads, VDIs and user traffic with AI/ML-powered VM-Series virtual firewalls from Palo Alto Networks. This listing includes 24x7 Premium Support. 5 | name: palo-alto-vm-series-ng-virtual-firewall 6 | tags: 7 | - firewall 8 | - networking 9 | title: VM-Series Next-Gen Virtual Firewall w/ Advanced Security Subs 10 | spec: 11 | type: SaaS 12 | author: Palo Alto 13 | authorPageUrl: https://www.paloaltonetworks.com/ 14 | url: https://aws.amazon.com/marketplace/pp/prodview-3xtziatyes54i?sr=0-3&ref_=beagle&applicationId=AWSMPContessa 15 | -------------------------------------------------------------------------------- /backstage-assets/partner-offerings/upstream-security/upstream-api-security.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: aws.amazon.com/v1beta1 2 | kind: PartnerOffering 3 | metadata: 4 | description: Upstream's API Security solution is uniquely able to secure billions of mobility API transactions and analyze their unique context for advanced detection and response. It is purpose-built for automotive and smart mobility, offering layers of API discovery and monitoring to secure applications and services against various vulnerabilities. 5 | name: upstream-api-security 6 | tags: 7 | - api-security 8 | - automotive 9 | title: Upstream API Security 10 | spec: 11 | type: SaaS 12 | author: Upstream Security 13 | authorPageUrl: https://aws.amazon.com/marketplace/seller-profile?id=c2e4bab5-137c-4059-86e5-1acbca8bb7ba 14 | url: https://aws.amazon.com/marketplace/pp/prodview-tqatlrchwaxj4?sr=0-1&ref_=beagle&applicationId=AWSMPContessa 15 | -------------------------------------------------------------------------------- /backstage-assets/partner-offerings/mongodb/digital-vehicle-twin.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: aws.amazon.com/v1beta1 2 | kind: PartnerOffering 3 | metadata: 4 | description: MongoDB Atlas developer data platform accelerates the development of connected car use cases. MongoDB’s document model allows easy and flexible modelling and storage of connected vehicle sensor data. Atlas Vector Search enables Gen AI RAG use cases, such as in- car assistance and predictive maintenance, helping you create a comprehensive vehicle digital twin application powered by AI. 5 | name: mongodb-digital-vehicle-twin 6 | tags: 7 | - database 8 | - digital-twin 9 | - vector-search 10 | title: Digital Vehicle Twin 11 | spec: 12 | type: DBaaS 13 | author: MongoDB 14 | authorPageUrl: https://partners.amazonaws.com/partners/001E000000U0VKNIA3/ 15 | url: https://aws.amazon.com/marketplace/seller-profile?id=c9032c7b-70dd-459f-834f-c1e23cf3d092 16 | -------------------------------------------------------------------------------- /backstage-assets/partner-offerings/sibros/deep-connected-platform.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: aws.amazon.com/v1beta1 2 | kind: PartnerOffering 3 | metadata: 4 | description: Sibros' Deep Connected Platform (DCP) is an end-to-end connected vehicle solution that integrates data logging, software updates, remote commands, and fault analytics. DCP offers unparalleled control, visibility, and governance over all embedded software and data across global fleets, from day zero to product decommissioning, while ensuring compliance with global safety and security standards. 5 | name: deep-connected-platform 6 | tags: 7 | - automotive 8 | - connected-vehicle 9 | title: Deep Connected Platform 10 | spec: 11 | type: SaaS 12 | author: Sibros 13 | authorPageUrl: https://aws.amazon.com/marketplace/seller-profile?id=adca6e7a-ee3c-43bb-b97a-16456f1b7b33 14 | url: https://aws.amazon.com/marketplace/pp/prodview-pmgjj367khi2u?sr=0-1&ref_=beagle&applicationId=AWSMPContessa 15 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Connected Mobility Solution on AWS Public Assets 2 | 3 | 4 | 5 | ## Table of Contents 6 | 7 | - [Connected Mobility Solution on AWS Public Assets](#connected-mobility-solution-on-aws-public-assets) 8 | - [Table of Contents](#table-of-contents) 9 | - [Solution Overview](#solution-overview) 10 | - [License](#license) 11 | 12 | ## Solution Overview 13 | 14 | These are public assets used by the Automotive Cloud Development Portal (backstage) 15 | 16 | Refer to the [Connected Mobility Solution on AWS](https://github.com/aws-solutions/connected-mobility-solution-on-aws) 17 | repo for deployment instructions. 18 | 19 | ## License 20 | 21 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 22 | 23 | Licensed under the Apache License, Version 2.0 (the "License"). 24 | You may not use this file except in compliance with the License. 25 | You may obtain a copy of the License at 26 | 27 | Unless required by applicable law or agreed to in writing, software 28 | distributed under the License is distributed on an "AS IS" BASIS, 29 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 30 | See the License for the specific language governing permissions and 31 | limitations under the License. 32 | -------------------------------------------------------------------------------- /backstage-assets/partner-offerings.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: backstage.io/v1alpha1 2 | kind: Location 3 | metadata: 4 | name: cms-partner-offerings 5 | description: A collection of all CMS partner offerings 6 | spec: 7 | targets: 8 | - ./partner-offerings/aicas/aicas-edgesuite.yaml 9 | - ./partner-offerings/argus/managed-vehicle-security-operations-center.yaml 10 | - ./partner-offerings/argus/sw-supply-chain-security.yaml 11 | - ./partner-offerings/azuga/azuga-fleet.yaml 12 | - ./partner-offerings/blackberry/cylance-cybersecurity-platform.yaml 13 | - ./partner-offerings/blackberry/radar-asset-tracking-solution.yaml 14 | - ./partner-offerings/bosch/automotive-data-transformer.yaml 15 | - ./partner-offerings/bosch/leapx-hmi-sw-engineering.yaml 16 | - ./partner-offerings/cerebrum-x/connected-car-data-analytics-platform.yaml 17 | - ./partner-offerings/excelfore/esync-ota-agent.yaml 18 | - ./partner-offerings/haas-alert/safety-cloud-digital-alerting-service.yaml 19 | - ./partner-offerings/here-technologies/here-location-services.yaml 20 | - ./partner-offerings/here-technologies/here-tour-planning.yaml 21 | - ./partner-offerings/idemia/digital-key.yaml 22 | - ./partner-offerings/kpit/predictive-maintenance-for-automotive-components.yaml 23 | - ./partner-offerings/mongodb/digital-vehicle-twin.yaml 24 | - ./partner-offerings/sibros/deep-connected-platform.yaml 25 | - ./partner-offerings/sonatus/sonatus-collector.yaml 26 | - ./partner-offerings/upstream-security/upstream-api-security.yaml 27 | - ./partner-offerings/upstream-security/vsoc.yaml 28 | - ./partner-offerings/uptake-technologies/uptake-fleet.yaml 29 | - ./partner-offerings/vicone/xnexus-next-gen-vsoc-platform.yaml 30 | - ./partner-offerings/wireless-car/position-and-journey.yaml 31 | - ./partner-offerings/wireless-car/smart-ev-routing.yaml 32 | - ./partner-offerings/palo-alto/vm-series-ng-virtual-firewall.yaml 33 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # This file should not be ignored if CDK is adjusting these values 2 | # For now, the values in this file are manual and should not be in 3 | # any actual deployment 4 | cdk.context.json 5 | environment_tars 6 | *_dependency_layer 7 | 8 | *.d.ts 9 | node_modules 10 | 11 | # Certification files 12 | # In case you have these in your directory for deployment/testing 13 | *.pem 14 | *.crt 15 | *.key 16 | 17 | # CDK asset staging directory 18 | .cdk.staging 19 | cdk.out 20 | chalice.out 21 | 22 | staging 23 | global-s3-assets 24 | regional-s3-assets 25 | open-source/ 26 | None/ 27 | generated_models/ 28 | 29 | # Temporary folders 30 | tmp/ 31 | temp/ 32 | .temp_redpencil/ 33 | 34 | ### VisualStudioCode ### 35 | .vscode/ 36 | .history/ 37 | 38 | ### macOS ### 39 | .DS_Store 40 | 41 | # Byte-compiled / optimized / DLL files 42 | __pycache__/ 43 | *.py[cod] 44 | *$py.class 45 | 46 | # C extensions 47 | *.so 48 | 49 | # Distribution / packaging 50 | .Python 51 | build/ 52 | develop-eggs/ 53 | dist/ 54 | dist-lib/ 55 | downloads/ 56 | eggs/ 57 | .eggs/ 58 | lib64/ 59 | parts/ 60 | sdist/ 61 | var/ 62 | wheels/ 63 | share/python-wheels/ 64 | *.egg-info/ 65 | .installed.cfg 66 | *.egg 67 | MANIFEST 68 | 69 | # PyInstaller 70 | # Usually these files are written by a python script from a template 71 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 72 | *.manifest 73 | *.spec 74 | 75 | # Installer logs 76 | pip-log.txt 77 | pip-delete-this-directory.txt 78 | 79 | # Unit test / coverage reports 80 | htmlcov/ 81 | .tox/ 82 | .nox/ 83 | .coverage 84 | coverage/ 85 | .coverage.* 86 | .cache 87 | nosetests.xml 88 | coverage.xml 89 | coverage-reports/ 90 | *.cover 91 | *.py,cover 92 | .hypothesis/ 93 | .pytest_cache/ 94 | cover/ 95 | *-cfnlogs.txt 96 | .nightswatch/functional/results 97 | .cdk_cache/ 98 | 99 | # Translations 100 | *.mo 101 | *.pot 102 | 103 | # Django stuff: 104 | *.log 105 | local_settings.py 106 | db.sqlite3 107 | db.sqlite3-journal 108 | 109 | # Flask stuff: 110 | instance/ 111 | .webassets-cache 112 | 113 | # Scrapy stuff: 114 | .scrapy 115 | 116 | # Sphinx documentation 117 | docs/_build/ 118 | 119 | # PyBuilder 120 | .pybuilder/ 121 | target/ 122 | 123 | # Jupyter Notebook 124 | .ipynb_checkpoints 125 | 126 | # IPython 127 | profile_default/ 128 | ipython_config.py 129 | 130 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm 131 | __pypackages__/ 132 | 133 | # Environments 134 | *.cmsrc 135 | .venv 136 | env/ 137 | venv/ 138 | ENV/ 139 | env.bak/ 140 | venv.bak/ 141 | 142 | # mkdocs documentation 143 | **/.acdp/docs 144 | **/.acdp/site 145 | 146 | # mypy 147 | .mypy_cache/ 148 | .dmypy.json 149 | dmypy.json 150 | 151 | # Pyre type checker 152 | .pyre/ 153 | 154 | # pytype static type analyzer 155 | .pytype/ 156 | 157 | # Cython debug symbols 158 | cython_debug/ 159 | 160 | # PyCharm 161 | .idea 162 | 163 | #draw.io backup files 164 | **/*.xml.bkp 165 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing Guidelines 2 | 3 | Thank you for your interest in contributing to our project. Whether it's a bug report, new feature, correction, or additional 4 | documentation, we greatly value feedback and contributions from our community. 5 | 6 | Please read through this document before submitting any issues or pull requests to ensure we have all the necessary 7 | information to effectively respond to your bug report or contribution. 8 | 9 | ## Reporting Bugs/Feature Requests 10 | 11 | We welcome you to use the GitHub issue tracker to report bugs or suggest features. 12 | 13 | When filing an issue, please check [existing open](https://github.com/aws-solutions/connected-mobility-solution-on-aws-public-assets/issues), 14 | or [recently closed](https://github.com/aws-solutions/connected-mobility-solution-on-aws-public-assets/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20), 15 | issues to make sure somebody else hasn't already reported the issue. Please try to include as much information as you can. 16 | Details like these are incredibly useful: 17 | 18 | - A reproducible test case or series of steps 19 | - The version of our code being used 20 | - The region being used 21 | - Any modifications you've made relevant to the bug 22 | - Anything unusual about your environment or deployment 23 | 24 | ## Contributing via Pull Requests 25 | 26 | Contributions via pull requests are much appreciated. Before sending us a pull request, please ensure that: 27 | 28 | 1. You are working against the latest source on the _main_ branch. 29 | 1. You check existing open, and recently merged, pull requests to make sure someone else hasn't addressed the problem already. 30 | 1. You open an issue to discuss any significant work - we would hate for your time to be wasted. 31 | 32 | To send us a pull request, please: 33 | 34 | 1. Fork the repository. 35 | 1. Modify the source; please focus on the specific change you are contributing. 36 | 1. Add new unit tests for the new code. 37 | 1. Run _npx npm run prettier-format_ in _source_ to ensure that code format standards are maintained. 38 | 1. If your changes include new capabilities, include in the PR description text that can be folded into the solution documentation. 39 | 1. Commit to your fork using clear commit messages. 40 | 1. In your repository _Security_ section, ensure that security advisories are enabled and address any Dependabot issues 41 | that appear. 42 | 1. Send us a pull request, answering any default questions in the pull request interface. 43 | 1. If the changes are complex or may involve additional communication, we may create a feature branch specific to your 44 | PR and ask you to rebase using that branch. 45 | 46 | GitHub provides additional documentation on [forking a repository](https://help.github.com/articles/fork-a-repo/) and 47 | [creating a pull request](https://help.github.com/articles/creating-a-pull-request/). 48 | 49 | ## Finding contributions to work on 50 | 51 | Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the 52 | default GitHub issue labels ((enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any 53 | ['help wanted'](https://github.com/aws-solutions/connected-mobility-solution-on-aws-public-assets/labels/help%20wanted) 54 | issues is a great place to start. 55 | 56 | ## Code of Conduct 57 | 58 | This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct). 59 | For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact 60 | with any additional questions or comments. 61 | 62 | ## Security issue notifications 63 | 64 | If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our 65 | [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/). Please do **not** create 66 | a public github issue. 67 | 68 | ## Licensing 69 | 70 | See the [LICENSE](https://github.com/aws-solutions/connected-mobility-solution-on-aws-public-assets/blob/main/LICENSE) 71 | file for our project's licensing. We will ask you to confirm the licensing of your contribution. 72 | 73 | We may ask you to sign a [Contributor License Agreement (CLA)](https://en.wikipedia.org/wiki/Contributor_License_Agreement) 74 | for larger changes. 75 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | 2 | Apache License 3 | Version 2.0, January 2004 4 | http://www.apache.org/licenses/ 5 | 6 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 7 | 8 | 1. Definitions. 9 | 10 | "License" shall mean the terms and conditions for use, reproduction, 11 | and distribution as defined by Sections 1 through 9 of this document. 12 | 13 | "Licensor" shall mean the copyright owner or entity authorized by 14 | the copyright owner that is granting the License. 15 | 16 | "Legal Entity" shall mean the union of the acting entity and all 17 | other entities that control, are controlled by, or are under common 18 | control with that entity. For the purposes of this definition, 19 | "control" means (i) the power, direct or indirect, to cause the 20 | direction or management of such entity, whether by contract or 21 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 22 | outstanding shares, or (iii) beneficial ownership of such entity. 23 | 24 | "You" (or "Your") shall mean an individual or Legal Entity 25 | exercising permissions granted by this License. 26 | 27 | "Source" form shall mean the preferred form for making modifications, 28 | including but not limited to software source code, documentation 29 | source, and configuration files. 30 | 31 | "Object" form shall mean any form resulting from mechanical 32 | transformation or translation of a Source form, including but 33 | not limited to compiled object code, generated documentation, 34 | and conversions to other media types. 35 | 36 | "Work" shall mean the work of authorship, whether in Source or 37 | Object form, made available under the License, as indicated by a 38 | copyright notice that is included in or attached to the work 39 | (an example is provided in the Appendix below). 40 | 41 | "Derivative Works" shall mean any work, whether in Source or Object 42 | form, that is based on (or derived from) the Work and for which the 43 | editorial revisions, annotations, elaborations, or other modifications 44 | represent, as a whole, an original work of authorship. For the purposes 45 | of this License, Derivative Works shall not include works that remain 46 | separable from, or merely link (or bind by name) to the interfaces of, 47 | the Work and Derivative Works thereof. 48 | 49 | "Contribution" shall mean any work of authorship, including 50 | the original version of the Work and any modifications or additions 51 | to that Work or Derivative Works thereof, that is intentionally 52 | submitted to Licensor for inclusion in the Work by the copyright owner 53 | or by an individual or Legal Entity authorized to submit on behalf of 54 | the copyright owner. For the purposes of this definition, "submitted" 55 | means any form of electronic, verbal, or written communication sent 56 | to the Licensor or its representatives, including but not limited to 57 | communication on electronic mailing lists, source code control systems, 58 | and issue tracking systems that are managed by, or on behalf of, the 59 | Licensor for the purpose of discussing and improving the Work, but 60 | excluding communication that is conspicuously marked or otherwise 61 | designated in writing by the copyright owner as "Not a Contribution." 62 | 63 | "Contributor" shall mean Licensor and any individual or Legal Entity 64 | on behalf of whom a Contribution has been received by Licensor and 65 | subsequently incorporated within the Work. 66 | 67 | 2. Grant of Copyright License. Subject to the terms and conditions of 68 | this License, each Contributor hereby grants to You a perpetual, 69 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 70 | copyright license to reproduce, prepare Derivative Works of, 71 | publicly display, publicly perform, sublicense, and distribute the 72 | Work and such Derivative Works in Source or Object form. 73 | 74 | 3. Grant of Patent License. Subject to the terms and conditions of 75 | this License, each Contributor hereby grants to You a perpetual, 76 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 77 | (except as stated in this section) patent license to make, have made, 78 | use, offer to sell, sell, import, and otherwise transfer the Work, 79 | where such license applies only to those patent claims licensable 80 | by such Contributor that are necessarily infringed by their 81 | Contribution(s) alone or by combination of their Contribution(s) 82 | with the Work to which such Contribution(s) was submitted. If You 83 | institute patent litigation against any entity (including a 84 | cross-claim or counterclaim in a lawsuit) alleging that the Work 85 | or a Contribution incorporated within the Work constitutes direct 86 | or contributory patent infringement, then any patent licenses 87 | granted to You under this License for that Work shall terminate 88 | as of the date such litigation is filed. 89 | 90 | 4. Redistribution. You may reproduce and distribute copies of the 91 | Work or Derivative Works thereof in any medium, with or without 92 | modifications, and in Source or Object form, provided that You 93 | meet the following conditions: 94 | 95 | (a) You must give any other recipients of the Work or 96 | Derivative Works a copy of this License; and 97 | 98 | (b) You must cause any modified files to carry prominent notices 99 | stating that You changed the files; and 100 | 101 | (c) You must retain, in the Source form of any Derivative Works 102 | that You distribute, all copyright, patent, trademark, and 103 | attribution notices from the Source form of the Work, 104 | excluding those notices that do not pertain to any part of 105 | the Derivative Works; and 106 | 107 | (d) If the Work includes a "NOTICE" text file as part of its 108 | distribution, then any Derivative Works that You distribute must 109 | include a readable copy of the attribution notices contained 110 | within such NOTICE file, excluding those notices that do not 111 | pertain to any part of the Derivative Works, in at least one 112 | of the following places: within a NOTICE text file distributed 113 | as part of the Derivative Works; within the Source form or 114 | documentation, if provided along with the Derivative Works; or, 115 | within a display generated by the Derivative Works, if and 116 | wherever such third-party notices normally appear. The contents 117 | of the NOTICE file are for informational purposes only and 118 | do not modify the License. You may add Your own attribution 119 | notices within Derivative Works that You distribute, alongside 120 | or as an addendum to the NOTICE text from the Work, provided 121 | that such additional attribution notices cannot be construed 122 | as modifying the License. 123 | 124 | You may add Your own copyright statement to Your modifications and 125 | may provide additional or different license terms and conditions 126 | for use, reproduction, or distribution of Your modifications, or 127 | for any such Derivative Works as a whole, provided Your use, 128 | reproduction, and distribution of the Work otherwise complies with 129 | the conditions stated in this License. 130 | 131 | 5. Submission of Contributions. Unless You explicitly state otherwise, 132 | any Contribution intentionally submitted for inclusion in the Work 133 | by You to the Licensor shall be under the terms and conditions of 134 | this License, without any additional terms or conditions. 135 | Notwithstanding the above, nothing herein shall supersede or modify 136 | the terms of any separate license agreement you may have executed 137 | with Licensor regarding such Contributions. 138 | 139 | 6. Trademarks. This License does not grant permission to use the trade 140 | names, trademarks, service marks, or product names of the Licensor, 141 | except as required for reasonable and customary use in describing the 142 | origin of the Work and reproducing the content of the NOTICE file. 143 | 144 | 7. Disclaimer of Warranty. Unless required by applicable law or 145 | agreed to in writing, Licensor provides the Work (and each 146 | Contributor provides its Contributions) on an "AS IS" BASIS, 147 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 148 | implied, including, without limitation, any warranties or conditions 149 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 150 | PARTICULAR PURPOSE. You are solely responsible for determining the 151 | appropriateness of using or redistributing the Work and assume any 152 | risks associated with Your exercise of permissions under this License. 153 | 154 | 8. Limitation of Liability. In no event and under no legal theory, 155 | whether in tort (including negligence), contract, or otherwise, 156 | unless required by applicable law (such as deliberate and grossly 157 | negligent acts) or agreed to in writing, shall any Contributor be 158 | liable to You for damages, including any direct, indirect, special, 159 | incidental, or consequential damages of any character arising as a 160 | result of this License or out of the use or inability to use the 161 | Work (including but not limited to damages for loss of goodwill, 162 | work stoppage, computer failure or malfunction, or any and all 163 | other commercial damages or losses), even if such Contributor 164 | has been advised of the possibility of such damages. 165 | 166 | 9. Accepting Warranty or Additional Liability. While redistributing 167 | the Work or Derivative Works thereof, You may choose to offer, 168 | and charge a fee for, acceptance of support, warranty, indemnity, 169 | or other liability obligations and/or rights consistent with this 170 | License. However, in accepting such obligations, You may act only 171 | on Your own behalf and on Your sole responsibility, not on behalf 172 | of any other Contributor, and only if You agree to indemnify, 173 | defend, and hold each Contributor harmless for any liability 174 | incurred by, or claims asserted against, such Contributor by reason 175 | of your accepting any such warranty or additional liability. 176 | 177 | END OF TERMS AND CONDITIONS 178 | --------------------------------------------------------------------------------