Skip to content

Commit a2a4bbe

Browse files
authored
Merge pull request #157 from NetApp/ckeith-patch-2
Took out unneeded "Data" statements, that were causing problems, from the FSxN as PVC for EKS sample.
2 parents f33d427 + 285e00f commit a2a4bbe

File tree

3 files changed

+9
-12
lines changed

3 files changed

+9
-12
lines changed

EKS/FSxN-as-PVC-for-EKS/terraform/eks-cluster.tf

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -122,11 +122,3 @@ data "cloudinit_config" "cloudinit" {
122122
content = file("scripts/iscsi.sh")
123123
}
124124
}
125-
126-
data "aws_eks_cluster" "eks" {
127-
name = module.eks.cluster_name
128-
}
129-
130-
data "aws_eks_cluster_auth" "eks" {
131-
name = module.eks.cluster_name
132-
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ output "fsx-management-ip" {
2424
}
2525

2626
output "eks-cluster-name" {
27-
value = data.aws_eks_cluster.eks.id
27+
value = module.eks.cluster_name
2828
}
2929

3030
output "vpc-id" {

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
# FSx-ONTAP-samples-scripts
22

3-
FSx for NetApp ONTAP is an AWS service providing a comprehensive set of advanced storage features purposely built to maximize cost performance, resilience, and accessibility in business-critical workloads.
3+
FSx for NetApp ONTAP is an AWS service providing a comprehensive set of advanced storage features purposely
4+
built to maximize cost performance, resilience, and accessibility in business-critical workloads.
45

56
## Overview
67

7-
This GitHub repository contains comprehensive code samples and automation scripts for FSx for Netapp ONTAP operations, promoting the use of Infrastructure as Code (IAC) tools and encouraging developers to extend the product's functionalities through code.
8+
This GitHub repository contains comprehensive code samples and automation scripts for FSx for Netapp ONTAP operations,
9+
promoting the use of Infrastructure as Code (IAC) tools and encouraging developers to extend the product's
10+
functionalities through code. The samples here go alongside the automation, management and monitoring that
11+
[BlueXP Workload Factory](https://www.netapp.com/bluexp/workload-factory/) provides.
812

913
We welcome contributions from the community! Please read our [contribution guidelines](CONTRIBUTING.md) before getting started.
1014

@@ -39,7 +43,8 @@ Licensed under the Apache License, Version 2.0 (the "License").
3943

4044
You may obtain a copy of the License at [apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0).
4145

42-
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an _"AS IS"_ basis, without WARRANTIES or conditions of any kind, either express or implied.
46+
Unless required by applicable law or agreed to in writing, software distributed under the License
47+
is distributed on an _"AS IS"_ basis, without WARRANTIES or conditions of any kind, either express or implied.
4348

4449
See the License for the specific language governing permissions and limitations under the License.
4550

0 commit comments

Comments
 (0)