Skip to content

Commit 7582f89

Browse files
authored
Merge pull request #166 from sassoftware/staging
4.3.1 - March 28, 2023
2 parents 7944d32 + 095e37d commit 7582f89

File tree

20 files changed

+61
-0
lines changed

20 files changed

+61
-0
lines changed

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 © 2021-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 © 2021-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 © 2021-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

locals.tf

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

36
# General

main.tf

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

modules/google_vm/main.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright © 2021-2023, SAS Institute Inc., Cary, NC, USA. All Rights Reserved.
2+
# SPDX-License-Identifier: Apache-2.0
3+
14
module "address" {
25
source = "terraform-google-modules/address/google"
36
version = "3.1.1"

modules/google_vm/outputs.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright © 2021-2023, SAS Institute Inc., Cary, NC, USA. All Rights Reserved.
2+
# SPDX-License-Identifier: Apache-2.0
3+
14
output "private_ip" {
25
value = google_compute_instance.google_vm.network_interface.0.network_ip
36
}

modules/google_vm/variables.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright © 2021-2023, SAS Institute Inc., Cary, NC, USA. All Rights Reserved.
2+
# SPDX-License-Identifier: Apache-2.0
3+
14
variable "name" {
25
type = string
36
}

modules/kubeconfig/locals.tf

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

modules/kubeconfig/main.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright © 2021-2023, SAS Institute Inc., Cary, NC, USA. All Rights Reserved.
2+
# SPDX-License-Identifier: Apache-2.0
3+
14
# Create service account secret
25
resource "kubernetes_secret" "sa_secret" {
36
count = var.create_static_kubeconfig ? 1 : 0

0 commit comments

Comments
 (0)