We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75bfab2 commit 2cb0c93Copy full SHA for 2cb0c93
hpc_provisioner/src/hpc_provisioner/aws_queries.py
@@ -21,7 +21,7 @@
21
register_subnet,
22
)
23
from hpc_provisioner.logging_config import LOGGING_CONFIG
24
-from hpc_provisioner.utils import get_fs_sg_id, get_fs_subnet_id
+from hpc_provisioner.utils import get_fs_sg_id, get_fs_subnet_ids
25
26
logging.config.dictConfig(LOGGING_CONFIG)
27
logger = logging.getLogger("hpc-resource-provisioner")
@@ -332,7 +332,7 @@ def create_fsx(
332
FileSystemType="LUSTRE",
333
StorageCapacity=19200,
334
StorageType="SSD",
335
- SubnetIds=[get_fs_subnet_id()],
+ SubnetIds=get_fs_subnet_ids(),
336
SecurityGroupIds=[get_fs_sg_id()],
337
Tags=tags,
338
LustreConfiguration={
0 commit comments