File tree Expand file tree Collapse file tree 3 files changed +16
-5
lines changed Expand file tree Collapse file tree 3 files changed +16
-5
lines changed Original file line number Diff line number Diff line change 17
17
goreleaser :
18
18
runs-on : ubuntu-latest
19
19
steps :
20
- - uses : actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
20
+ - uses : actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
21
21
with :
22
22
# Allow goreleaser to access older tag information.
23
23
fetch-depth : 0
Original file line number Diff line number Diff line change 22
22
runs-on : ubuntu-latest
23
23
timeout-minutes : 5
24
24
steps :
25
- - uses : actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
25
+ - uses : actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
26
26
- uses : actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
27
27
with :
28
28
go-version-file : ' go.mod'
37
37
generate :
38
38
runs-on : ubuntu-latest
39
39
steps :
40
- - uses : actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
40
+ - uses : actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
41
41
- uses : actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
42
42
with :
43
43
go-version-file : ' go.mod'
71
71
- ' 1.3.*'
72
72
- ' 1.4.*'
73
73
steps :
74
- - uses : actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
74
+ - uses : actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
75
75
- uses : actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
76
76
with :
77
77
go-version-file : ' go.mod'
Original file line number Diff line number Diff line change @@ -10,7 +10,18 @@ description: |-
10
10
11
11
Retrieve information about an organization.
12
12
13
-
13
+ ## Example Usage
14
+
15
+ ``` terraform
16
+ // Get the default organization
17
+ data "openai_organization" "default" {
18
+ }
19
+
20
+ // Get an organization by ID
21
+ data "openai_organization" "example" {
22
+ id = "org-000000000000000000000000"
23
+ }
24
+ ```
14
25
15
26
<!-- schema generated by tfplugindocs -->
16
27
## Schema
You can’t perform that action at this time.
0 commit comments