Skip to content

Commit 89b509d

Browse files
authored
Add 'how to use the provider' in the README of repo (#341)
* add 'how to use the provider' in the README of repo * move how to part in Getting started
1 parent 3cadf79 commit 89b509d

1 file changed

Lines changed: 18 additions & 1 deletion

File tree

README.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,26 @@
33
# Introduction
44

55
This project is the official Terraform provider for STACKIT.
6-
6+
77
# Getting Started
88

9+
To install STACKIT Terraform Provider, copy and paste this code into your Terraform configuration. Then, run `terraform init`.
10+
11+
```
12+
terraform {
13+
required_providers {
14+
stackit = {
15+
source = "stackitcloud/stackit"
16+
version = "X.X.X"
17+
}
18+
}
19+
}
20+
21+
provider "stackit" {
22+
# Configuration options
23+
}
24+
```
25+
926
Check one of the examples in the [examples](examples/) folder.
1027

1128
# Authentication

0 commit comments

Comments
 (0)