Skip to content

Commit 0e02eba

Browse files
committed
Updated the path for the fsxn-rotate-secret module.
1 parent 1be2f0a commit 0e02eba

File tree

3 files changed

+5
-5
lines changed
  • EKS/FSxN-as-PVC-for-EKS/terraform
  • Terraform/deploy-fsx-ontap

3 files changed

+5
-5
lines changed

EKS/FSxN-as-PVC-for-EKS/terraform/fsx.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
22
# Instantiate an AWS secret for the FSx ONTAP file system. It will set the initial password for the file system.
33
module "fsxn_rotate_secret" {
4-
source = "../DevelopersAdocacy/FSx-ONTAP-samples-scripts/Management-Utilities/fsxn-rotate-secret/terraform"
4+
source = "github.com/Netapp/FSx-ONTAP-samples-scripts/Management-Utilities/fsxn-rotate-secret/terraform"
55
fsx_region = var.aws_region
66
secret_region = var.aws_secrets_region
77
aws_account_id = var.aws_account_id
@@ -25,7 +25,7 @@ resource "aws_fsx_ontap_file_system" "eksfs" {
2525
#
2626
# Instantiate an AWS secret for the storage virtual machine. It will set the initial password for the SVM.
2727
module "svm_rotate_secret" {
28-
source = "../DevelopersAdocacy/FSx-ONTAP-samples-scripts/Management-Utilities/fsxn-rotate-secret/terraform"
28+
source = "github.com/Netapp/FSx-ONTAP-samples-scripts/Management-Utilities/fsxn-rotate-secret/terraform"
2929
fsx_region = var.aws_region
3030
secret_region = var.aws_secrets_region
3131
aws_account_id = var.aws_account_id

Terraform/deploy-fsx-ontap/module/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ data "aws_region" "current" {}
5454
#
5555
# Instantiate a secret for the FSx ONTAP file system. It will set the initial password for the file system.
5656
module "fsxn_rotate_secret" {
57-
source = "/home/ckeith/DevelopersAdocacy/FSx-ONTAP-samples-scripts/Management-Utilities/fsxn-rotate-secret/terraform/"
57+
source = "github.com/Netapp/FSx-ONTAP-samples-scripts/Management-Utilities/fsxn-rotate-secret/terraform"
5858
fsx_region = data.aws_region.current.name
5959
secret_region = var.secrets_region != "" ? var.secrets_region : data.aws_region.current.name
6060
aws_account_id = var.aws_account_id
@@ -73,7 +73,7 @@ resource "aws_fsx_ontap_storage_virtual_machine" "mysvm" {
7373
#
7474
# Instantiate a secret for the FSx ONTAP file system. It will set the initial password for the SVM.
7575
module "svm_rotate_secret" {
76-
source = "/home/ckeith/DevelopersAdocacy/FSx-ONTAP-samples-scripts/Management-Utilities/fsxn-rotate-secret/terraform/"
76+
source = "github.com/Netapp/FSx-ONTAP-samples-scripts/Management-Utilities/fsxn-rotate-secret/terraform"
7777
fsx_region = data.aws_region.current.name
7878
secret_region = var.secrets_region != "" ? var.secrets_region : data.aws_region.current.name
7979
aws_account_id = var.aws_account_id

Terraform/deploy-fsx-ontap/standalone-module/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ provider "aws" {
1414
#
1515
# Instantiate a secret for the FSx ONTAP file system. It will set the initial password for the file system.
1616
module "fsxn_rotate_secret" {
17-
source = "../DevelopersAdocacy/FSx-ONTAP-samples-scripts/Management-Utilities/fsxn-rotate-secret/terraform/"
17+
source = "github.com/Netapp/FSx-ONTAP-samples-scripts/Management-Utilities/fsxn-rotate-secret/terraform"
1818
fsx_region = var.fsx_region
1919
secret_region = var.secret_region
2020
aws_account_id = var.aws_account_id

0 commit comments

Comments
 (0)