Skip to content

Commit

Permalink
Remove s from existing_security_group_id
Browse files Browse the repository at this point in the history
  • Loading branch information
iameskild committed Oct 26, 2023
1 parent 02205d9 commit 65679da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/_nebari/stages/infrastructure/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ class AmazonWebServicesProvider(schema.Base):
),
}
existing_subnet_ids: List[str] = None
existing_security_group_ids: str = None
existing_security_group_id: str = None
vpc_cidr_block: str = "10.10.0.0/16"
permissions_boundary: Optional[str] = None
tags: Optional[Dict[str, str]] = {}
Expand Down Expand Up @@ -755,7 +755,7 @@ def input_vars(self, stage_outputs: Dict[str, Dict[str, Any]]):
name=self.config.escaped_project_name,
environment=self.config.namespace,
existing_subnet_ids=self.config.amazon_web_services.existing_subnet_ids,
existing_security_group_id=self.config.amazon_web_services.existing_security_group_ids,
existing_security_group_id=self.config.amazon_web_services.existing_security_group_id,
region=self.config.amazon_web_services.region,
kubernetes_version=self.config.amazon_web_services.kubernetes_version,
node_groups=[
Expand Down

0 comments on commit 65679da

Please sign in to comment.