Skip to content

Commit 649188c

Browse files
committed
Update documentation and examples
1 parent 5a0bef1 commit 649188c

File tree

4 files changed

+115
-0
lines changed

4 files changed

+115
-0
lines changed
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
# generated by https://github.com/hashicorp/terraform-plugin-docs
3+
page_title: "quay_organization_robot Data Source - quay"
4+
subcategory: ""
5+
description: |-
6+
7+
---
8+
9+
# quay_organization_robot (Data Source)
10+
11+
12+
13+
## Example Usage
14+
15+
```terraform
16+
resource "quay_organization" "org" {
17+
name = "org"
18+
19+
}
20+
21+
data "quay_organization_robot" "robot" {
22+
name = "robot"
23+
orgname = quay_organization.org.name
24+
}
25+
```
26+
27+
<!-- schema generated by tfplugindocs -->
28+
## Schema
29+
30+
### Required
31+
32+
- `name` (String) Robot short name
33+
- `orgname` (String) Organization name
34+
35+
### Read-Only
36+
37+
- `description` (String) Text description
38+
- `fullname` (String) Robot full name
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
---
2+
# generated by https://github.com/hashicorp/terraform-plugin-docs
3+
page_title: "quay_organization_team Data Source - quay"
4+
subcategory: ""
5+
description: |-
6+
7+
---
8+
9+
# quay_organization_team (Data Source)
10+
11+
12+
13+
## Example Usage
14+
15+
```terraform
16+
resource "quay_organization" "org" {
17+
name = "org"
18+
19+
}
20+
21+
resource "quay_repository" "repo" {
22+
name = "repo"
23+
namespace = quay_organization.org.name
24+
}
25+
26+
resource "quay_organization_robot" "robot" {
27+
name = "robot"
28+
orgname = quay_organization.org.name
29+
}
30+
31+
data "quay_organization_team" "team" {
32+
name = "team"
33+
orgname = quay_organization.org.name
34+
}
35+
```
36+
37+
<!-- schema generated by tfplugindocs -->
38+
## Schema
39+
40+
### Required
41+
42+
- `name` (String) Team name
43+
- `orgname` (String) Organization name
44+
45+
### Read-Only
46+
47+
- `description` (String) Markdown description
48+
- `members` (List of String) List of team members
49+
- `role` (String) Team role
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
resource "quay_organization" "org" {
2+
name = "org"
3+
4+
}
5+
6+
data "quay_organization_robot" "robot" {
7+
name = "robot"
8+
orgname = quay_organization.org.name
9+
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
resource "quay_organization" "org" {
2+
name = "org"
3+
4+
}
5+
6+
resource "quay_repository" "repo" {
7+
name = "repo"
8+
namespace = quay_organization.org.name
9+
}
10+
11+
resource "quay_organization_robot" "robot" {
12+
name = "robot"
13+
orgname = quay_organization.org.name
14+
}
15+
16+
data "quay_organization_team" "team" {
17+
name = "team"
18+
orgname = quay_organization.org.name
19+
}

0 commit comments

Comments
 (0)