Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
dtherhtun committed Jun 11, 2020
1 parent 569848e commit 12f0484
Show file tree
Hide file tree
Showing 6 changed files with 70 additions and 114 deletions.
114 changes: 0 additions & 114 deletions dist/config.yaml

This file was deleted.

1 change: 1 addition & 0 deletions docs/data-sources/idm.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Data
12 changes: 12 additions & 0 deletions docs/guides/authenticating-basic.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
page_title: "Authenticating with Ped Store"
---

```
provider "idm" {
idm_server = # Redhat IDM server address
user = # User account for login
password = # password for login
insecure = # enable or disable tls (value = true or false)
}
```
25 changes: 25 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# RedHat IDM Provider

Summary of what the provider is for, including use cases and links to
app/service documentation.

## Example Usage

```hcl
provider "idm" {
}
```

## For terraform.tf

```hcl
terraform {
required_providers {
idm = {
source = "DTherHtun/idm"
version = "0.0.1"
}
}
}
```
16 changes: 16 additions & 0 deletions docs/resources/idm_dns_record.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
subcategory: "idm_dns_record"
---

# creating dns record in Redhat IDM

```hcl
resource "idm_dns_record" "my_record" {
idm_dns_name =
idm_dns_zone_name =
type =
records =
dnsttl =
dnsclass =
}
```
16 changes: 16 additions & 0 deletions docs/resources/idm_host.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
subcategory: "idm_host"
---

# Add host in Redhat IDM

```hcl
resource "idm_host" "my_host" {
fqdn =
description =
random =
userpassword =
randompassword =
force =
}
```

0 comments on commit 12f0484

Please sign in to comment.