iact3/cli_modules/cost.py [24:39]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        '''
        self.template = template
        self.config_file = config_file
        self.regions = regions
        

    @classmethod
    async def create(cls, template: str = None,
                     config_file: str = None,
                     regions: str = None,
                     tags: dict = None):
        tests = await StackTest.from_file(
            template=template,
            project_config_file=config_file,
            regions=regions
        )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



iact3/cli_modules/preview.py [33:47]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        '''
        self.template = template
        self.config_file = config_file
        self.regions = regions
    
    @classmethod
    async def create(cls, template: str = None,
                     config_file: str = None,
                     regions: str = None,
                     tags: dict = None):
        tests = await StackTest.from_file(
            template=template,
            project_config_file=config_file,
            regions=regions
        )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



