|
5 | 5 | * [Installation Overview](#Installation-Overview) |
6 | 6 | * [Detailed Instructions](#Detailed-instructions) |
7 | 7 | * [Clone the "NetApp/FSx-ONTAP-samples-scripts" repo from GitHub](#Clone-the-NetAppFSx-ONTAP-samples-scripts-repo-from-GitHub) |
8 | | - * [Make any desired changes to the variables.tf file](#Make-any-desired-changes-to-the-variablestf-file) |
| 8 | + * [Make any desired changes to the configuration variables](#Make-any-desired-changes-to-the-configuration-variables) |
9 | 9 | * [Initialize the Terraform environment](#Initialize-the-Terraform-environment) |
10 | 10 | * [Deploy the resources](#Deploy-the-resources) |
11 | 11 | * [SSH to the jump server to complete the setup](#SSH-to-the-jump-server-to-complete-the-setup) |
@@ -78,21 +78,19 @@ terraform files are located: |
78 | 78 | git clone https://github.com/NetApp/FSx-ONTAP-samples-scripts.git |
79 | 79 | cd FSx-ONTAP-samples-scripts/EKS/FSxN-as-PVC-for-EKS/terraform |
80 | 80 | ``` |
81 | | -### Make any desired changes to the variables.tf file. |
82 | | -Variables that can be changed include: |
| 81 | +### Make any desired changes to the configuration variables |
| 82 | +To configure the deployment first copy the `terraform.tfvars.template` file to `terraform.tfvars`. Then, modify it to suit your needs. Here are the variables you can set: |
83 | 83 | - aws_region - The AWS region where you want to deploy the resources. |
84 | 84 | - aws_secrets_region - The region where the fsx password secret will be created. |
85 | 85 | - fsx_name - The name you want applied to the FSx for NetApp ONTAP File System. Must not already exist. |
86 | | -- secret_name_prefix - The base name of the AWS SecretsManager secrets that will be created that will hold the FSxN adminstrator, and SVM, passwords. |
| 86 | +- secret_name_prefix - The base name of the AWS SecretsManager secrets that will be created that will hold the FSxN administrator, and SVM, passwords. |
87 | 87 | A random string will be appended to this name to ensure uniqueness. |
88 | | -- fsx_storage_capacity - The storage capacity of the FSx for NetApp ONTAP File System. |
89 | | -Read the "description" of the variable to see the valid range. |
90 | | -- fsx_throughput_capacity - The throughput capacity of the FSx for NetApp ONTAP File System. |
91 | | -Read the "description" of the variable to see valid values. |
| 88 | +- fsx_storage_capacity - The storage capacity of the FSx for NetApp ONTAP File System. Read the "description" of the variable in the `variables.tf` file to see the valid range. |
| 89 | +- fsx_throughput_capacity - The throughput capacity of the FSx for NetApp ONTAP File System. Read the "description" of the variable in the `varaibles.tf` file to see valid values. |
92 | 90 | - key_pair_name - The name of the EC2 key pair to use to access the jump server. |
93 | 91 | - secure_ips - The IP address ranges to allow SSH access to the jump server. The default is wide open. |
94 | 92 |
|
95 | | -:warning: **NOTE:** You must change the key_pair_name variable, otherwise the deployment will not complete succesfully. |
| 93 | +:warning: **NOTE:** You must change the key_pair_name variable, otherwise the deployment will not complete successfully. |
96 | 94 | ### Initialize the Terraform environment |
97 | 95 | Run the following command to initialize the terraform environment. |
98 | 96 | ```bash |
|
0 commit comments