Skip to content

Commit 2b57fa6

Browse files
rephrase description
1 parent 781b4b2 commit 2b57fa6

18 files changed

+27
-27
lines changed

codefresh/data_account.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99

1010
func dataSourceAccount() *schema.Resource {
1111
return &schema.Resource{
12-
Description: "This data source retrieves an account by _id or name. Requires Codefresh admin token and hence is relevant only for on premise installations of Codefresh.",
12+
Description: "This data source retrieves an account by _id or name. Requires a Codefresh admin token and applies only to Codefresh on-premises installations.",
1313
Read: dataSourceAccountRead,
1414
Schema: map[string]*schema.Schema{
1515
"_id": {

codefresh/data_idps.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010

1111
func dataSourceIdps() *schema.Resource {
1212
return &schema.Resource{
13-
Description: "This data source retrieves all Identity Providers (IdPs) in the system. Requires Codefresh admin token and hence is relevant only for on premise installations of Codefresh.",
13+
Description: "This data source retrieves all Identity Providers (IdPs) in the system. Requires a Codefresh admin token and applies only to Codefresh on-premises installations.",
1414
Read: dataSourceIdpRead,
1515
Schema: IdpSchema(),
1616
}

codefresh/data_user.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010

1111
func dataSourceUser() *schema.Resource {
1212
return &schema.Resource{
13-
Description: "This data source retrieves a user by email. Requires Codefresh admin token and hence is relevant only for on premise installations of Codefresh.",
13+
Description: "This data source retrieves a user by email. Requires a Codefresh admin token and applies only to Codefresh on-premises installations.",
1414
Read: dataSourceUserRead,
1515
Schema: *UserSchema(),
1616
}

codefresh/data_users.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99

1010
func dataSourceUsers() *schema.Resource {
1111
return &schema.Resource{
12-
Description: "This data source retrieves all users in the system. Requires Codefresh admin token and hence is relevant only for on premise installations of Codefresh.",
12+
Description: "This data source retrieves all users in the system. Requires a Codefresh admin token and applies only to Codefresh on-premises installations.",
1313
Read: dataSourceUsersRead,
1414
Schema: map[string]*schema.Schema{
1515
"users": {

codefresh/resource_account.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
func resourceAccount() *schema.Resource {
99
return &schema.Resource{
1010
Description: `
11-
By creating different accounts for different teams within the same company a customer can achieve complete segregation of assets between the teams. Requires Codefresh admin token and hence is relevant only for on premise installations of Codefresh.
11+
By creating different accounts for different teams within the same company a customer can achieve complete segregation of assets between the teams. Requires a Codefresh admin token and applies only to Codefresh on-premises installations.
1212
`,
1313
Create: resourceAccountCreate,
1414
Read: resourceAccountRead,

codefresh/resource_account_admins.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
func resourceAccountAdmins() *schema.Resource {
1010
return &schema.Resource{
1111
Description: `
12-
Use this resource to set a list of admins for any account. Requires Codefresh admin token and hence is relevant only for on premise installations of Codefresh.
12+
Use this resource to set a list of admins for any account. Requires a Codefresh admin token and applies only to Codefresh on-premises installations.
1313
`,
1414
Create: resourceAccountAdminsCreate,
1515
Read: resourceAccountAdminsRead,

codefresh/resource_api_key.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ func resourceApiKey() *schema.Resource {
1414
return &schema.Resource{
1515
Description: `
1616
Manages an API Key tied to an Account and a User.
17-
Requires Codefresh admin token and hence is relevant only for on premise installations of Codefresh.
17+
Requires a Codefresh admin token and applies only to Codefresh on-premises installations.
1818
`,
1919
Create: resourceApiKeyCreate,
2020
Read: resourceApiKeyRead,

codefresh/resource_idp.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616

1717
func resourceIdp() *schema.Resource {
1818
return &schema.Resource{
19-
Description: "Codefresh global level identity provider. Requires Codefresh admin token, hence is relevant only for on-prem deployments of Codefresh",
19+
Description: "Codefresh global level identity provider. Requires a Codefresh admin token and applies only to Codefresh on-premises installations.",
2020
Create: resourceIDPCreate,
2121
Read: resourceIDPRead,
2222
Update: resourceIDPUpdate,

codefresh/resource_user.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111

1212
func resourceUser() *schema.Resource {
1313
return &schema.Resource{
14-
Description: "This resource is used to manage a Codefresh user. Requires Codefresh admin token and hence is relevant only for on premise installations of Codefresh.",
14+
Description: "This resource is used to manage a Codefresh user. Requires a Codefresh admin token and applies only to Codefresh on-premises installations.",
1515
Create: resourceUsersCreate,
1616
Read: resourceUsersRead,
1717
Update: resourceUsersUpdate,

docs/data-sources/account.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
page_title: "codefresh_account Data Source - terraform-provider-codefresh"
33
subcategory: ""
44
description: |-
5-
This data source retrieves an account by _id or name. Requires Codefresh admin token and hence is relevant only for on premise installations of Codefresh.
5+
This data source retrieves an account by _id or name. Requires a Codefresh admin token and applies only to Codefresh on-premises installations.
66
---
77

88
# codefresh_account (Data Source)
99

10-
This data source retrieves an account by _id or name. Requires Codefresh admin token and hence is relevant only for on premise installations of Codefresh.
10+
This data source retrieves an account by _id or name. Requires a Codefresh admin token and applies only to Codefresh on-premises installations.
1111

1212
## Example Usage
1313

docs/data-sources/idps.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
page_title: "codefresh_idps Data Source - terraform-provider-codefresh"
33
subcategory: ""
44
description: |-
5-
This data source retrieves all Identity Providers (IdPs) in the system. Requires Codefresh admin token and hence is relevant only for on premise installations of Codefresh.
5+
This data source retrieves all Identity Providers (IdPs) in the system. Requires a Codefresh admin token and applies only to Codefresh on-premises installations.
66
---
77

88
# codefresh_idps (Data Source)
99

10-
This data source retrieves all Identity Providers (IdPs) in the system. Requires Codefresh admin token and hence is relevant only for on premise installations of Codefresh.
10+
This data source retrieves all Identity Providers (IdPs) in the system. Requires a Codefresh admin token and applies only to Codefresh on-premises installations.
1111

1212
## Example Usage
1313

docs/data-sources/user.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
page_title: "codefresh_user Data Source - terraform-provider-codefresh"
33
subcategory: ""
44
description: |-
5-
This data source retrieves a user by email. Requires Codefresh admin token and hence is relevant only for on premise installations of Codefresh.
5+
This data source retrieves a user by email. Requires a Codefresh admin token and applies only to Codefresh on-premises installations.
66
---
77

88
# codefresh_user (Data Source)
99

10-
This data source retrieves a user by email. Requires Codefresh admin token and hence is relevant only for on premise installations of Codefresh.
10+
This data source retrieves a user by email. Requires a Codefresh admin token and applies only to Codefresh on-premises installations.
1111

1212
## Example usage
1313

docs/data-sources/users.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
page_title: "codefresh_users Data Source - terraform-provider-codefresh"
33
subcategory: ""
44
description: |-
5-
This data source retrieves all users in the system. Requires Codefresh admin token and hence is relevant only for on premise installations of Codefresh.
5+
This data source retrieves all users in the system. Requires a Codefresh admin token and applies only to Codefresh on-premises installations.
66
---
77

88
# codefresh_users (Data Source)
99

10-
This data source retrieves all users in the system. Requires Codefresh admin token and hence is relevant only for on premise installations of Codefresh.
10+
This data source retrieves all users in the system. Requires a Codefresh admin token and applies only to Codefresh on-premises installations.
1111

1212
## Example usage
1313

docs/resources/account.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
page_title: "codefresh_account Resource - terraform-provider-codefresh"
33
subcategory: ""
44
description: |-
5-
By creating different accounts for different teams within the same company a customer can achieve complete segregation of assets between the teams. Requires Codefresh admin token and hence is relevant only for on premise installations of Codefresh.
5+
By creating different accounts for different teams within the same company a customer can achieve complete segregation of assets between the teams. Requires a Codefresh admin token and applies only to Codefresh on-premises installations.
66
---
77

88
# codefresh_account (Resource)
99

10-
By creating different accounts for different teams within the same company a customer can achieve complete segregation of assets between the teams. Requires Codefresh admin token and hence is relevant only for on premise installations of Codefresh.
10+
By creating different accounts for different teams within the same company a customer can achieve complete segregation of assets between the teams. Requires a Codefresh admin token and applies only to Codefresh on-premises installations.
1111

1212
See the [documentation](https://codefresh.io/docs/docs/administration/account-user-management/).
1313

docs/resources/account_admins.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
page_title: "codefresh_account_admins Resource - terraform-provider-codefresh"
33
subcategory: ""
44
description: |-
5-
Use this resource to set a list of admins for any account. Requires Codefresh admin token and hence is relevant only for on premise installations of Codefresh.
5+
Use this resource to set a list of admins for any account. Requires a Codefresh admin token and applies only to Codefresh on-premises installations.
66
---
77

88
# codefresh_account_admins (Resource)
99

10-
Use this resource to set a list of admins for any account. Requires Codefresh admin token and hence is relevant only for on premise installations of Codefresh.
10+
Use this resource to set a list of admins for any account. Requires a Codefresh admin token and applies only to Codefresh on-premises installations.
1111

1212
## Example usage
1313

docs/resources/api_key.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ page_title: "codefresh_api_key Resource - terraform-provider-codefresh"
33
subcategory: ""
44
description: |-
55
Manages an API Key tied to an Account and a User.
6-
Requires Codefresh admin token and hence is relevant only for on premise installations of Codefresh.
6+
Requires a Codefresh admin token and applies only to Codefresh on-premises installations.
77
---
88

99
# codefresh_api_key (Resource)
1010

1111
Manages an API Key tied to an Account and a User.
12-
Requires Codefresh admin token and hence is relevant only for on premise installations of Codefresh.
12+
Requires a Codefresh admin token and applies only to Codefresh on-premises installations.
1313

1414
terraform-provider-codefresh itself uses an API key, passed as provider's attribute, but it's possible to use that API Key to generate a new one.
1515
This resource requires Codefresh system admin permissions, hence is relevant for on-prem deployments of Codefresh only.

docs/resources/idp.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
page_title: "codefresh_idp Resource - terraform-provider-codefresh"
33
subcategory: ""
44
description: |-
5-
Codefresh global level identity provider. Requires Codefresh admin token, hence is relevant only for on-prem deployments of Codefresh
5+
Codefresh global level identity provider. Requires a Codefresh admin token and applies only to Codefresh on-premises installations.
66
---
77

88
# codefresh_idp (Resource)
99

10-
Codefresh global level identity provider. Requires Codefresh admin token, hence is relevant only for on-prem deployments of Codefresh
10+
Codefresh global level identity provider. Requires a Codefresh admin token and applies only to Codefresh on-premises installations.
1111

1212
## Example usage
1313
```hcl

docs/resources/user.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
page_title: "codefresh_user Resource - terraform-provider-codefresh"
33
subcategory: ""
44
description: |-
5-
This resource is used to manage a Codefresh user. Requires Codefresh admin token and hence is relevant only for on premise installations of Codefresh.
5+
This resource is used to manage a Codefresh user. Requires a Codefresh admin token and applies only to Codefresh on-premises installations.
66
---
77

88
# codefresh_user (Resource)
99

10-
This resource is used to manage a Codefresh user. Requires Codefresh admin token and hence is relevant only for on premise installations of Codefresh.
10+
This resource is used to manage a Codefresh user. Requires a Codefresh admin token and applies only to Codefresh on-premises installations.
1111

1212

1313

0 commit comments

Comments
 (0)