Skip to content

Commit e67ea52

Browse files
authored
chore(CU-8699htpkr): Remove beta mention for space sharing (#694)
1 parent 06f0c86 commit e67ea52

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/data-sources/module.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ data "spacelift_module" "k8s-module" {
5151
- `runner_image` (String) Name of the Docker image used to process Runs
5252
- `shared_accounts` (Set of String) List of the accounts (subdomains) which should have access to the Module
5353
- `space_id` (String) ID (slug) of the space the module is in
54-
- `space_shares` (Set of String) (Beta) List of the space IDs which should have access to the Module
54+
- `space_shares` (Set of String) List of the space IDs which should have access to the Module
5555
- `terraform_provider` (String) The module provider will by default be inferred from the repository name if it follows the terraform-provider-name naming convention. However, if the repository doesn't follow this convention, or you gave the module a custom name, you can provide the provider name here.
5656
- `worker_pool_id` (String) ID of the worker pool to use
5757
- `workflow_tool` (String) Defines the tool that will be used to execute the workflow. This can be one of `OPEN_TOFU`, `TERRAFORM_FOSS` or `CUSTOM`.

docs/resources/module.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ resource "spacelift_module" "example-module" {
6161
- `runner_image` (String) Name of the Docker image used to process Runs
6262
- `shared_accounts` (Set of String) List of the accounts (subdomains) which should have access to the Module
6363
- `space_id` (String) ID (slug) of the space the module is in
64-
- `space_shares` (Set of String) (Beta) List of the space IDs which should have access to the Module
64+
- `space_shares` (Set of String) List of the space IDs which should have access to the Module
6565
- `terraform_provider` (String) The module provider will by default be inferred from the repository name if it follows the terraform-provider-name naming convention. However, if the repository doesn't follow this convention, or you gave the module a custom name, you can provide the provider name here.
6666
- `worker_pool_id` (String) ID of the worker pool to use. NOTE: worker_pool_id is required when using a self-hosted instance of Spacelift.
6767
- `workflow_tool` (String) Defines the tool that will be used to execute the workflow. This can be one of `OPEN_TOFU`, `TERRAFORM_FOSS` or `CUSTOM`. Defaults to `TERRAFORM_FOSS`.

spacelift/data_module.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ func dataModule() *schema.Resource {
234234
},
235235
"space_shares": {
236236
Type: schema.TypeSet,
237-
Description: "(Beta) List of the space IDs which should have access to the Module",
237+
Description: "List of the space IDs which should have access to the Module",
238238
Elem: &schema.Schema{Type: schema.TypeString},
239239
Computed: true,
240240
},

spacelift/resource_module.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ func resourceModule() *schema.Resource {
303303
},
304304
"space_shares": {
305305
Type: schema.TypeSet,
306-
Description: "(Beta) List of the space IDs which should have access to the Module",
306+
Description: "List of the space IDs which should have access to the Module",
307307
Elem: &schema.Schema{Type: schema.TypeString},
308308
Optional: true,
309309
},

0 commit comments

Comments
 (0)