dataops-infra/infra/stacks/fargate_services/airflow.py [31:37]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    def __init__(
        self, scope: core.Construct, id: str, props: props_type, **kwargs
    ) -> None:
        super().__init__(scope, id, **kwargs)
        ns = SimpleNamespace(**props)

        bucket_name = os.environ.get("BUCKET_NAME")
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



dataops-infra/infra/stacks/fargate_services/dbt.py [24:30]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    def __init__(
        self, scope: core.Construct, id: str, props: props_type, **kwargs
    ) -> None:
        super().__init__(scope, id, **kwargs)
        ns = SimpleNamespace(**props)

        bucket_name = os.environ.get("BUCKET_NAME")
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



