Skip to content

Commit fc0abfc

Browse files
authored
feat: (IAC-934) Added copyright information (#295)
1 parent 8b35082 commit fc0abfc

33 files changed

+99
-4
lines changed

container-structure-test.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright © 2020-2023, SAS Institute Inc., Cary, NC, USA. All Rights Reserved.
2+
# SPDX-License-Identifier: Apache-2.0
3+
14
schemaVersion: "2.0.0"
25

36
fileExistenceTests:

docker-entrypoint.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
#!/usr/bin/env bash
2+
3+
# Copyright © 2020-2023, SAS Institute Inc., Cary, NC, USA. All Rights Reserved.
4+
# SPDX-License-Identifier: Apache-2.0
5+
26
set -e
37

48
# setup container user

files/tools/iac_git_info.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
#!/usr/bin/env bash
22

3+
# Copyright © 2020-2023, SAS Institute Inc., Cary, NC, USA. All Rights Reserved.
4+
# SPDX-License-Identifier: Apache-2.0
5+
36
# We need to return an error if things don't work
47
set -e
58

files/tools/iac_tooling_version.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
#!/usr/bin/env bash
22

3+
# Copyright © 2020-2023, SAS Institute Inc., Cary, NC, USA. All Rights Reserved.
4+
# SPDX-License-Identifier: Apache-2.0
5+
36
# We need to return an error if things don't work
47
set -e
58

files/tools/terraform_env_variable_helper.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
#!/usr/bin/env bash
22

3+
# Copyright © 2020-2023, SAS Institute Inc., Cary, NC, USA. All Rights Reserved.
4+
# SPDX-License-Identifier: Apache-2.0
5+
36
echo -e "\nUsage: You must have an active az cli login 'az login' before this script will work"
47
echo -e "\nUsage: Run an export referenced in line 8 or 9 before this script before continuing"
58
echo " For example: export YOURSP=your-SP-name or export YOURSP=\$USER"

iam.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright © 2020-2023, SAS Institute Inc., Cary, NC, USA. All Rights Reserved.
2+
# SPDX-License-Identifier: Apache-2.0
3+
14
data "azurerm_user_assigned_identity" "uai" {
25
count = var.aks_identity == "uai" ? ( var.aks_uai_name == null ? 0 : 1 ) : 0
36
name = var.aks_uai_name

locals.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright © 2020-2023, SAS Institute Inc., Cary, NC, USA. All Rights Reserved.
2+
# SPDX-License-Identifier: Apache-2.0
3+
14
locals {
25

36
# Useful flags

main.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright © 2020-2023, SAS Institute Inc., Cary, NC, USA. All Rights Reserved.
2+
# SPDX-License-Identifier: Apache-2.0
3+
14
## Azure-AKS
25
#
36
# Terraform Registry : https://registry.terraform.io/namespaces/Azure

modules/aks_node_pool/main.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright © 2020-2023, SAS Institute Inc., Cary, NC, USA. All Rights Reserved.
2+
# SPDX-License-Identifier: Apache-2.0
3+
14
# Reference: https://www.terraform.io/docs/providers/azurerm/r/kubernetes_cluster_node_pool.html
25

36
resource "azurerm_kubernetes_cluster_node_pool" "autoscale_node_pool" {

modules/aks_node_pool/variables.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright © 2020-2023, SAS Institute Inc., Cary, NC, USA. All Rights Reserved.
2+
# SPDX-License-Identifier: Apache-2.0
3+
14
# REQUIRED variables (must be set by caller of the module)
25

36
variable "node_pool_name" {

0 commit comments

Comments
 (0)