Skip to content

Commit

Permalink
Merge pull request #14 from conjurdemos/12-test-builds
Browse files Browse the repository at this point in the history
Bump version to 1.0.0
  • Loading branch information
aharriscybr authored Mar 15, 2024
2 parents 21b9cd5 + 6614f69 commit 370f4ce
Show file tree
Hide file tree
Showing 5 changed files with 62 additions and 3 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# CyberArk Privilege Cloud Provider
Base provider for managing the state of objects and configurations in Privilege Cloud

This release is currently in **beta**.

Please see [Docs](/docs/index.md) for current supported resources and data providers

## Certification level
![](https://img.shields.io/badge/Certification%20Level-Community-28A745?link=https://github.com/cyberark/community/blob/master/Conjur/conventions/certification-levels.md)

Expand Down
19 changes: 18 additions & 1 deletion docs/resources/awsaccount.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,24 @@ description: |-

AWS Account Resource


## Example Usage

```terraform
resource "cyberark_awsaccount" "awskey" {
name = "user-aws"
username = "user-aws"
platform = "AWS_TF"
safe = "TF_TEST_SAFE"
secrettype = "key"
secret = "secret_key"
sm_manage = false
sm_manage_reason = "No CPM Associated with Safe."
aws_kid = "9876543210"
aws_accountid = "0123456789"
aws_alias = "aws_alias"
aws_accountregion = "us-east-2"
}
```

<!-- schema generated by tfplugindocs -->
## Schema
Expand Down
19 changes: 18 additions & 1 deletion docs/resources/dbaccount.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,24 @@ description: |-

Database Account Resource


## Example Usage

```terraform
resource "cyberark_dbaccount" "pgdb" {
name = "user-db"
address = "1.2.3.4"
username = "user-db"
platform = "PROD_PostgreSQL"
safe = "TF_TEST_SAFE"
secrettype = "password"
secret = "SincerelySecure2#24!"
sm_manage = false
sm_manage_reason = "No CPM Associated with Safe."
db_port = "8432"
db_dsn = "dsn"
dbname = "dbo.services"
}
```

<!-- schema generated by tfplugindocs -->
## Schema
Expand Down
21 changes: 21 additions & 0 deletions docs/resources/msaccount.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,28 @@ description: |-

Microsoft Azure Key Account Resource

## Example Usage

```terraform
resource "cyberark_msaccount" "mskey" {
name = "user-ms"
address = "1.2.3.4"
username = "user-ms"
platform = "MS_TF"
safe = "TF_TEST_SAFE"
secrettype = "password"
secret = "SincerelySecure2#24!"
sm_manage = false
sm_manage_reason = "No CPM Associated with Safe."
ms_appid = "ApplicationID"
ms_appobjid = "ApplicationObjectID"
ms_keyid = "KeyID"
ms_adid = "ADKeyID"
ms_duration = "300"
ms_pop = "yes"
ms_keydesc = "key descriptiong with spaces"
}
```

<!-- schema generated by tfplugindocs -->
## Schema
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
//go:generate go run github.com/hashicorp/terraform-plugin-docs/cmd/tfplugindocs generate -provider-name cyberark

var (
version string = "0.9.9"
version string = "1.0.0"
)

func main() {
Expand Down

0 comments on commit 370f4ce

Please sign in to comment.