File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
src/_nebari/stages/kubernetes_keycloak_configuration Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 44
55from _nebari .stages .base import NebariTerraformStage
66from _nebari .stages .kubernetes_keycloak import Authentication
7- from _nebari .stages .tf_objects import NebariOpentofuRequiredProvider
7+ from _nebari .stages .tf_objects import (
8+ NebariOpentofuRequiredProvider ,
9+ NebariTerraformState ,
10+ )
811from nebari import schema
912from nebari .hookspecs import NebariStage , hookimpl
1013
@@ -27,6 +30,7 @@ class KubernetesKeycloakConfigurationStage(NebariTerraformStage):
2730 def tf_objects (self ) -> List [Dict ]:
2831 return [
2932 * super ().tf_objects (),
33+ NebariTerraformState (self .name , self .config ),
3034 NebariOpentofuRequiredProvider ("helm" , self .config ),
3135 NebariOpentofuRequiredProvider ("kubernetes" , self .config ),
3236 NebariOpentofuRequiredProvider ("keycloak" , self .config ),
You can’t perform that action at this time.
0 commit comments