Skip to content

Commit 0a48e17

Browse files
committed
Add License Comment
1 parent a224634 commit 0a48e17

11 files changed

+80
-0
lines changed

.github/workflows/appsignals-e2e-ec2-canary-test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2+
## SPDX-License-Identifier: Apache-2.0
3+
14
## This workflow aims to run the Application Signals end-to-end tests as a canary to
25
## test the artifacts for App Signals enablement. It will deploy a sample app and remote
36
## service on two EC2 instances, call the APIs, and validate the generated telemetry,

.github/workflows/appsignals-e2e-ec2-test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2+
## SPDX-License-Identifier: Apache-2.0
3+
14
# This is a reusable workflow for running the E2E test for App Signals.
25
# It is meant to be called from another workflow.
36
# Read more about reusable workflows: https://docs.github.com/en/actions/using-workflows/reusing-workflows#overview

.github/workflows/appsignals-e2e-eks-canary-test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2+
## SPDX-License-Identifier: Apache-2.0
3+
14
## This workflow aims to run the Application Signals end-to-end tests as a canary to
25
## test the artifacts for App Signals enablement. It will deploy a sample app and remote
36
## service onto an EKS cluster, call the APIs, and validate the generated telemetry,

.github/workflows/appsignals-e2e-eks-test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2+
## SPDX-License-Identifier: Apache-2.0
3+
14
# This is a reusable workflow for running the E2E test for App Signals.
25
# It is meant to be called from another workflow.
36
# Read more about reusable workflows: https://docs.github.com/en/actions/using-workflows/reusing-workflows#overview

.github/workflows/appsignals-e2e-gamma-test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2+
## SPDX-License-Identifier: Apache-2.0
3+
14
## This workflow aims to run the Application Signals end-to-end tests as a canary to
25
## test the artifacts for App Signals enablement. It will deploy a sample app and remote
36
## service onto an EKS cluster, call the APIs, and validate the generated telemetry,

.github/workflows/springboot-sample-app-ecr-deploy.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2+
## SPDX-License-Identifier: Apache-2.0
3+
14
name: App Signals Enablement - ECR Springboot Sample App Deployment
25
on:
36
workflow_dispatch: # be able to run the workflow on demand

.github/workflows/springboot-sample-app-s3-deploy.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2+
## SPDX-License-Identifier: Apache-2.0
3+
14
name: App Signals Enablement - S3 Springboot Sample App Deployment
25
on:
36
workflow_dispatch: # be able to run the workflow on demand

terraform/ec2/main.tf

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# ------------------------------------------------------------------------
2+
# Copyright 2023 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3+
#
4+
# Licensed under the Apache License, Version 2.0 (the "License").
5+
# You may not use this file except in compliance with the License.
6+
# A copy of the License is located at
7+
#
8+
# http://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# or in the "license" file accompanying this file. This file is distributed
11+
# on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
12+
# express or implied. See the License for the specific language governing
13+
# permissions and limitations under the License.
14+
# -------------------------------------------------------------------------
15+
116
terraform {
217
required_providers {
318
aws = {

terraform/ec2/output.tf

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# ------------------------------------------------------------------------
2+
# Copyright 2023 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3+
#
4+
# Licensed under the Apache License, Version 2.0 (the "License").
5+
# You may not use this file except in compliance with the License.
6+
# A copy of the License is located at
7+
#
8+
# http://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# or in the "license" file accompanying this file. This file is distributed
11+
# on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
12+
# express or implied. See the License for the specific language governing
13+
# permissions and limitations under the License.
14+
# -------------------------------------------------------------------------
15+
116
output "sample_app_main_service_public_dns" {
217
value = aws_instance.main_service_instance.public_dns
318
}

terraform/eks/main.tf

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# ------------------------------------------------------------------------
2+
# Copyright 2023 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3+
#
4+
# Licensed under the Apache License, Version 2.0 (the "License").
5+
# You may not use this file except in compliance with the License.
6+
# A copy of the License is located at
7+
#
8+
# http://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# or in the "license" file accompanying this file. This file is distributed
11+
# on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
12+
# express or implied. See the License for the specific language governing
13+
# permissions and limitations under the License.
14+
# -------------------------------------------------------------------------
15+
116
terraform {
217
required_providers {
318
aws = {

validator/src/main/java/com/amazon/aoc/fileconfigs/LocalPathExpectedTemplate.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,20 @@
1414
*/
1515

1616
package com.amazon.aoc.fileconfigs;
17+
/*
18+
* Copyright Amazon.com, Inc. or its affiliates.
19+
*
20+
* Licensed under the Apache License, Version 2.0 (the "License").
21+
* You may not use this file except in compliance with the License.
22+
* A copy of the License is located at
23+
*
24+
* http://aws.amazon.com/apache2.0
25+
*
26+
* or in the "license" file accompanying this file. This file is distributed
27+
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
28+
* express or implied. See the License for the specific language governing
29+
* permissions and limitations under the License.
30+
*/
1731

1832
import java.io.IOException;
1933
import java.net.URL;

0 commit comments

Comments
 (0)