-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
70 additions
and
114 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Data |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 = | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 = | ||
} | ||
``` |