You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Terraform/deploy-fsx-ontap/standalone-module/README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@
10
10
*[License](#license)
11
11
12
12
## Introduction
13
-
This sample demonstrates how to deploy an FSx for NetApp ONTAP file system, including an SVM and a FlexVolume in that file system, using AWS Terraform provider in a standalone Terraform module.
13
+
This sample demonstrates how to deploy an FSx for NetApp ONTAP file system, including an SVM and a FlexVolume in that file system, using AWS Terraform provider in a standalone Terraform module.
14
14
Follow the instructions below to use this sample in your own environment.
15
15
### Repository Overview
16
16
This is a standalone Terraform configuration repository that contains the following files:
@@ -43,7 +43,7 @@ Running this terraform sample will result the following:
43
43
* A new FSx for Netapp ONTAP file-system. Much of the configuration is defined in the `variables.tf` file, but the following are the default values:
44
44
* 1024Gb of storage capacity
45
45
* Generation 1 Multi AZ deployment type
46
-
* 128Mbps of throughput capacity
46
+
* 128Mbps of throughput capacity
47
47
* 1 HA pair
48
48
* 1 Storage Virtual Machine (SVM)
49
49
* 1 FlexVol volume with the following configuration parameters:
@@ -52,7 +52,7 @@ Running this terraform sample will result the following:
52
52
* Security style of UNIX
53
53
* Storage efficiencies enabled
54
54
* Auto tiering policy with 31 cooling days
55
-
* post-delete backup disabled
55
+
* post-delete backup disabled
56
56
57
57
## Prerequisites
58
58
@@ -107,7 +107,7 @@ value was retrieved, and the configuration variable name.
107
107
### 1. Clone the repository
108
108
In your server's terminal, navigate to the location where you wish to store this Terraform repository, and clone the repository using your preferred authentication type. In this example we are using HTTPS clone:
| route_table_ids | An array of routing table IDs that will be modified to allow access to the FSxN file system. This is only used for Multi AZ deployment types and must be left as null for Single AZ deployment types. |`list(string)`|`null`| no |
212
212
| secret_name_prefix | The prefix to the secret names created that will contain the FSxN passwords (system, and SVM). |`string`|`"fsxn-secret"`| no |
213
213
| secret_region | The AWS region where the secrets for the FSxN file system and SVM will be deployed. |`string`|`"us-west-2"`| no |
214
-
|security_group_id| If you are not creating the security group, provide the ID of the security group to be used. |`string`|`""`| no |
214
+
|security_group_ids| If you are not creating the security group, provide a list of IDs of security groups to be used. |`list(string)`|`[]`| no |
215
215
| security_group_name_prefix | The prefix to the security group name that will be created. |`string`|`"fsxn-sg"`| no |
216
216
| source_sg_id | The ID of the security group to allow access to the FSxN file system. Set to an empty string if you want to use the cidr_for_sg as the source. |`string`|`""`| no |
217
217
| svm_name | The name of the Storage Virtual Machine |`string`|`"fsx"`| no |
Copy file name to clipboardExpand all lines: Terraform/deploy-fsx-ontap/standalone-module/variables.tf
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ variable "fsx_name" {
6
6
7
7
variable"fsx_deploy_type" {
8
8
description="The file system deployment type. Supported values are 'MULTI_AZ_1', 'SINGLE_AZ_1', 'MULTI_AZ_2', and 'SINGLE_AZ_2'. MULTI_AZ_1 and SINGLE_AZ_1 are Gen 1. MULTI_AZ_2 and SINGLE_AZ_2 are Gen 2."
0 commit comments