def subnets()

in dataops-infra/infra/stacks/vpc_stack.py [0:0]


    def subnets(self) -> List:
        return [
            ec2.SubnetConfiguration(
                subnet_type=ec2.SubnetType.PUBLIC, name="public", cidr_mask=24
            ),
            ec2.SubnetConfiguration(
                subnet_type=ec2.SubnetType.ISOLATED, name="dataops", cidr_mask=24
            ),
        ]