You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -12,37 +12,44 @@ Let's assume you have completed the following prereqs:
12
12
Log into Confluent Cloud and find the API Key and API Secret.
13
13
Use the commands below to set environment variables needed to authenticate to Confluent Cloud:
14
14
15
-
```shell
15
+
[source,bash]
16
+
.Confluent Cloud API Keys
17
+
----
16
18
export CONFLUENT_CLOUD_API_KEY=<API KEY>
17
19
export CONFLUENT_CLOUD_API_SECRET=<API SECRET>
18
-
```
20
+
----
19
21
20
22
== Execute Terraform Manifests
21
23
22
-
The terraform manifests require the Confluent Cloud organization ID in order to provision infrastructure.
24
+
The terraform manifests require the Confluent Cloud organization ID to provision infrastructure.
23
25
This can be found in the Confluent Cloud console in the "Organization Settings" and exported to an environment variable:
24
26
25
27
image::org-id.jpg[]
26
28
27
29
image::org-id-2.jpg[]
28
30
29
-
```bash
31
+
[source,bash]
32
+
.org-id.sh
33
+
----
30
34
export TF_VAR_org_id=<ORG ID VALUE FROM CONSOLE>
31
-
```
35
+
----
32
36
33
37
This value can also be queried by using the Confluent CLI to query your account, piping the result to a `jq` query and using that value in a `TF_VAR_`:
0 commit comments