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
This commit is contained in:
parent
3cadf793f6
commit
89b509d622
1 changed files with 18 additions and 1 deletions
19
README.md
19
README.md
|
|
@ -3,9 +3,26 @@
|
||||||
# Introduction
|
# Introduction
|
||||||
|
|
||||||
This project is the official Terraform provider for STACKIT.
|
This project is the official Terraform provider for STACKIT.
|
||||||
|
|
||||||
# Getting Started
|
# Getting Started
|
||||||
|
|
||||||
|
To install STACKIT Terraform Provider, copy and paste this code into your Terraform configuration. Then, run `terraform init`.
|
||||||
|
|
||||||
|
```
|
||||||
|
terraform {
|
||||||
|
required_providers {
|
||||||
|
stackit = {
|
||||||
|
source = "stackitcloud/stackit"
|
||||||
|
version = "X.X.X"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
provider "stackit" {
|
||||||
|
# Configuration options
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
Check one of the examples in the [examples](examples/) folder.
|
Check one of the examples in the [examples](examples/) folder.
|
||||||
|
|
||||||
# Authentication
|
# Authentication
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue