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
|
||||
|
||||
This project is the official Terraform provider for STACKIT.
|
||||
|
||||
|
||||
# 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.
|
||||
|
||||
# Authentication
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue