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:
GokceGK 2024-04-22 11:20:44 +02:00 committed by GitHub
parent 3cadf793f6
commit 89b509d622
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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