Skip to content

Commit

Permalink
Remove NebariTerraformState from NebariTerraformStage.tf_objects()
Browse files Browse the repository at this point in the history
  • Loading branch information
smokestacklightnin committed Nov 25, 2024
1 parent dd64020 commit 8923dda
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/_nebari/stages/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,8 @@
from kubernetes import client, config
from kubernetes.client.rest import ApiException

from _nebari import constants
from _nebari.provider import helm, kubernetes, kustomize, opentofu
from _nebari.stages.tf_objects import (
NebariOpentofuRequiredVersion,
NebariTerraformState,
)
from _nebari.stages.tf_objects import NebariOpentofuRequiredVersion
from nebari.hookspecs import NebariStage

KUSTOMIZATION_TEMPLATE = "kustomization.yaml.tmpl"
Expand Down Expand Up @@ -245,7 +241,6 @@ def state_imports(self) -> List[Tuple[str, str]]:

def tf_objects(self) -> List[Dict]:
return [
NebariTerraformState(self.name, self.config),
NebariOpentofuRequiredVersion(self.config),
]

Expand Down

0 comments on commit 8923dda

Please sign in to comment.