Skip to content

Commit b7a54fa

Browse files
kksatmjiao
authored andcommitted
add license notice
Signed-off-by: kksat <[email protected]>
1 parent 721e56e commit b7a54fa

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

bicep/domain-records.bicep

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
// SPDX-FileCopyrightText: 2024 SAP edge team
2+
// SPDX-FileContributor: Kirill Satarin (@kksat)
3+
// SPDX-FileContributor: Manjun Jiao (@mjiao)
4+
//
5+
// SPDX-License-Identifier: Apache-2.0
6+
17
@description('The name of the DNS zone where A records will be created, must already exist')
28
param domainZoneName string
39

hack/domain-records.sh

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
#! /usr/bin/env bash
22

3+
# SPDX-FileCopyrightText: 2024 SAP edge team
4+
# SPDX-FileContributor: Kirill Satarin (@kksat)
5+
# SPDX-FileContributor: Manjun Jiao (@mjiao)
6+
#
7+
# SPDX-License-Identifier: Apache-2.0
8+
39
DOMAIN=""
410
ARO_NAME=""
511
ARO_RESOURCE_GROUP=""

hack/domain-zone-exists.sh

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
#! /usr/bin/env bash
22

3+
# SPDX-FileCopyrightText: 2024 SAP edge team
4+
# SPDX-FileContributor: Kirill Satarin (@kksat)
5+
# SPDX-FileContributor: Manjun Jiao (@mjiao)
6+
#
7+
# SPDX-License-Identifier: Apache-2.0
8+
39
NAME=$(az network dns zone list --query "[?name=='${ARO_DOMAIN}'].name" -o tsv)
410
if [ "${NAME}" == "${ARO_DOMAIN}" ]; then
511
echo "Domain zone ${ARO_DOMAIN} exists"

0 commit comments

Comments
 (0)