We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b8c03e commit 2aaa734Copy full SHA for 2aaa734
examples/rabbitmq/delete_instance.py
@@ -11,4 +11,4 @@
11
client = DefaultApi(config)
12
13
# Delete an instance
14
-client.delete_instance(project_id,instance_id)
+client.delete_instance(project_id, instance_id)
examples/ske/list_clusters.py
@@ -1,7 +1,9 @@
1
+import os
2
+
3
from stackit.core.configuration import Configuration
4
from stackit.ske.api.default_api import DefaultApi
5
-project_id = "16f49d71-37ad-4137-8b97-44d9c55c4094"
6
+project_id = os.getenv("PROJECT_ID")
7
8
# Create a new API client, that uses default authentication and configuration
9
config = Configuration()
0 commit comments