Skip to content

Commit

Permalink
Add NebariTerraformState to kubernetes_services
Browse files Browse the repository at this point in the history
  • Loading branch information
smokestacklightnin committed Dec 2, 2024
1 parent ce9832f commit 1c0be1e
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@

from _nebari.stages.base import NebariTerraformStage
from _nebari.stages.kubernetes_keycloak import Authentication
from _nebari.stages.tf_objects import NebariOpentofuRequiredProvider
from _nebari.stages.tf_objects import (
NebariOpentofuRequiredProvider,
NebariTerraformState,
)
from nebari import schema
from nebari.hookspecs import NebariStage, hookimpl

Expand All @@ -27,6 +30,7 @@ class KubernetesKeycloakConfigurationStage(NebariTerraformStage):
def tf_objects(self) -> List[Dict]:
return [
*super().tf_objects(),
NebariTerraformState(self.name, self.config),
NebariOpentofuRequiredProvider("helm", self.config),
NebariOpentofuRequiredProvider("kubernetes", self.config),
NebariOpentofuRequiredProvider("keycloak", self.config),
Expand Down

0 comments on commit 1c0be1e

Please sign in to comment.