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
Copy file name to clipboardExpand all lines: modules/manage/pages/terraform-provider.adoc
+36Lines changed: 36 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -108,6 +108,42 @@ Do not modify `throughput_tier` after it is set. When `allow_deletion` is set to
108
108
109
109
== Prerequisites
110
110
111
+
[IMPORTANT]
112
+
====
113
+
*Redpanda Terraform Provider - Windows Support Notice*
114
+
115
+
The Redpanda Terraform provider is not supported on Windows systems. If you're using Windows, you must use Windows Subsystem for Linux 2 (WSL2) to run the Redpanda Terraform provider.
116
+
117
+
To use WSL2 with the Redpanda Terraform provider:
118
+
119
+
. If WSL2 is not already installed, install it by running the following command in PowerShell as Administrator:
120
+
+
121
+
```powershell
122
+
wsl --install
123
+
```
124
+
+
125
+
Then restart your computer.
126
+
127
+
. Open your WSL2 Linux distribution (e.g., Ubuntu) from the Start menu or by running `wsl` in PowerShell.
128
+
. Navigate to your project directory within WSL2.
129
+
. Run all Terraform commands from within your WSL2 environment:
130
+
+
131
+
```bash
132
+
# Initialize Terraform and download the Redpanda provider
133
+
terraform init
134
+
135
+
# Plan your Redpanda infrastructure changes
136
+
terraform plan
137
+
138
+
# Apply the configuration to create Redpanda resources
139
+
terraform apply
140
+
141
+
# View created resources
142
+
terraform show
143
+
```
144
+
145
+
====
146
+
111
147
. Install at least version 1.0.0 of Terraform using the https://learn.hashicorp.com/tutorials/terraform/install-cli[official guide^].
112
148
. Create a service account in Redpanda Cloud:
113
149
.. Log in to https://cloud.redpanda.com[Redpanda Cloud^].
0 commit comments