Skip to content

Commit 954375a

Browse files
committed
remove beta flags from documentations
1 parent e2eef47 commit 954375a

10 files changed

Lines changed: 19 additions & 23 deletions

docs/guides/predefined_variations.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ page_title: "Feature flag or setting with predefined variations"
44

55
# Feature flag or setting with predefined variations
66

7-
The feature is currently in closed beta state and cannot be used.
8-
97
## Prerequisites
108

119
[Get your Public Management API credentials](https://app.configcat.com/my-account/public-api-credentials) and set the following environment variables:

docs/resources/permission_group.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ output "custom_permission_group_id" {
8787
### Optional
8888

8989
- `accesstype` (String) Represent the Feature Management permission. Possible values: readOnly, full, custom
90-
- `approval_permission_type` (String) Represents the permission group level change request approval permission. Approval Flow and Scheduled Changes are in closed beta. Possible values: cannotApprove, canApproveOthers, canBypassApproval, custom
90+
- `approval_permission_type` (String) Represents the permission group level change request approval permission. Possible values: cannotApprove, canApproveOthers, canBypassApproval, custom
9191
- `can_createorupdate_config` (Boolean) Group members can create/update Configs.
9292
- `can_createorupdate_environment` (Boolean) Group members can create/update Environments.
9393
- `can_createorupdate_segment` (Boolean) Group members can create/update Segments.
@@ -110,9 +110,9 @@ output "custom_permission_group_id" {
110110
- `can_view_product_statistics` (Boolean) Group members has access to product statistics.
111111
- `can_view_sdkkey` (Boolean) Group members has access to SDK keys.
112112
- `environment_accesses` (Map of String) The environment specific permissions map block. Keys are the Environment IDs and the values represent the environment specific Feature Management permission. Possible values: full, readOnly
113-
- `environment_approval_permissions` (Map of String) The environment specific approval permissions map block. Keys are the Environment IDs and the values represent the environment specific change request approval permission. Approval Flow and Scheduled Changes are in closed beta. Possible values: cannotApprove, canApproveOthers, canBypassApproval
113+
- `environment_approval_permissions` (Map of String) The environment specific approval permissions map block. Keys are the Environment IDs and the values represent the environment specific change request approval permission. Possible values: cannotApprove, canApproveOthers, canBypassApproval
114114
- `new_environment_accesstype` (String) Represent the environment specific Feature Management permission for new Environments. Possible values: full, readOnly, none
115-
- `new_environment_approval_permission_type` (String) Represents the environment specific change request approval permission for new Environments. Approval Flow and Scheduled Changes are in closed beta. Possible values: cannotApprove, canApproveOthers, canBypassApproval
115+
- `new_environment_approval_permission_type` (String) Represents the environment specific change request approval permission for new Environments. Possible values: cannotApprove, canApproveOthers, canBypassApproval
116116

117117
### Read-Only
118118

docs/resources/product_preferences.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ resource "configcat_product_preferences" "preferences" {
5858

5959
### Optional
6060

61-
- `approve_required` (Boolean) Indicates that a mandatory approval is required before changes are applied. Approval Flow and Scheduled Changes are in closed beta. Default: false.
62-
- `approve_required_environments` (Map of Boolean) The environment specific mandatory approval map block. Keys are the Environment IDs and the values indicate that mandatory approval is required before changes are applied. Approval Flow and Scheduled Changes are in closed beta.
61+
- `approve_required` (Boolean) Indicates that a mandatory approval is required before changes are applied. Default: false.
62+
- `approve_required_environments` (Map of Boolean) The environment specific mandatory approval map block. Keys are the Environment IDs and the values indicate that mandatory approval is required before changes are applied.
6363
- `key_generation_mode` (String) Determines the Feature Flag key generation mode. Available values: `camelCase`|`upperCase`|`lowerCase`|`pascalCase`|`kebabCase`. Default: `camelCase`.
6464
- `mandatory_setting_hint` (Boolean) Indicates whether Feature flags and Settings must have a hint. Default: false.
6565
- `reason_required` (Boolean) Indicates that a mandatory note is required for saving and publishing. Default: false.

docs/resources/setting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ output "setting_id" {
4646

4747
- `hint` (String) The hint of the Feature Flag or Setting.
4848
- `is_json` (Boolean) Whether this Feature Flag or Setting should validate string values as JSON values.
49-
- `predefined_variations` (Attributes List) The predefined variations of the Feature Flag or Setting. The feature is currently in closed beta state and cannot be used. (see [below for nested schema](#nestedatt--predefined_variations))
49+
- `predefined_variations` (Attributes List) The predefined variations of the Feature Flag or Setting. (see [below for nested schema](#nestedatt--predefined_variations))
5050
- `setting_type` (String) The type of the Feature Flag or Setting. Available values: `boolean`|`string`|`int`|`double`. Default: `boolean`.
5151

5252
### Read-Only

docs/resources/setting_value_v2.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ resource "configcat_setting_value_v2" "string_setting_value" {
160160

161161
### Optional
162162

163-
- `bypass_approval` (Boolean) Indicates whether the change should bypass the approval workflow. Approval Flow and Scheduled Changes are in closed beta.
163+
- `bypass_approval` (Boolean) Indicates whether the change should bypass the approval workflow.
164164
- `init_only` (Boolean) The main purpose of this resource to provide an initial value for the Feature Flag/Setting.
165165

166166
The `init_only` argument's default value is `true`. Meaning that the Feature Flag or Setting's **value will be only be applied once** during resource creation. If someone modifies the value on the [ConfigCat Dashboard](https://app.configcat.com) those modifications will **not be overwritten** by the Terraform script.
@@ -183,7 +183,7 @@ Optional:
183183
- `bool_value` (Boolean) The boolean representation of the value.
184184
- `double_value` (Number) The decimal number representation of the value.
185185
- `int_value` (Number) The whole number representation of the value.
186-
- `predefined_variation_id` (String) The predefined variation's ID representation of the value in case of the setting has predefined variations. The feature is currently in closed beta state and cannot be used.
186+
- `predefined_variation_id` (String) The predefined variation's ID representation of the value in case of the setting has predefined variations.
187187
- `string_value` (String) The string representation of the value.
188188

189189

@@ -222,7 +222,7 @@ Optional:
222222
- `bool_value` (Boolean) The boolean representation of the value.
223223
- `double_value` (Number) The decimal number representation of the value.
224224
- `int_value` (Number) The whole number representation of the value.
225-
- `predefined_variation_id` (String) The predefined variation's ID representation of the value in case of the setting has predefined variations. The feature is currently in closed beta state and cannot be used.
225+
- `predefined_variation_id` (String) The predefined variation's ID representation of the value in case of the setting has predefined variations.
226226
- `string_value` (String) The string representation of the value.
227227

228228

@@ -285,7 +285,7 @@ Optional:
285285
- `bool_value` (Boolean) The boolean representation of the value.
286286
- `double_value` (Number) The decimal number representation of the value.
287287
- `int_value` (Number) The whole number representation of the value.
288-
- `predefined_variation_id` (String) The predefined variation's ID representation of the value in case of the setting has predefined variations. The feature is currently in closed beta state and cannot be used.
288+
- `predefined_variation_id` (String) The predefined variation's ID representation of the value in case of the setting has predefined variations.
289289
- `string_value` (String) The string representation of the value.
290290

291291

@@ -298,7 +298,7 @@ Optional:
298298
- `bool_value` (Boolean) The boolean representation of the value.
299299
- `double_value` (Number) The decimal number representation of the value.
300300
- `int_value` (Number) The whole number representation of the value.
301-
- `predefined_variation_id` (String) The predefined variation's ID representation of the value in case of the setting has predefined variations. The feature is currently in closed beta state and cannot be used.
301+
- `predefined_variation_id` (String) The predefined variation's ID representation of the value in case of the setting has predefined variations.
302302
- `string_value` (String) The string representation of the value.
303303

304304
## Import

internal/configcat/permission_group_resource.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -241,19 +241,19 @@ func (r *permissionGroupResource) Schema(ctx context.Context, req resource.Schem
241241
ElementType: types.StringType,
242242
},
243243
PermissionGroupApprovalPermissionType: schema.StringAttribute{
244-
Description: "Represents the permission group level change request approval permission. Approval Flow and Scheduled Changes are in closed beta. Possible values: cannotApprove, canApproveOthers, canBypassApproval, custom",
244+
Description: "Represents the permission group level change request approval permission. Possible values: cannotApprove, canApproveOthers, canBypassApproval, custom",
245245
Computed: true,
246246
Optional: true,
247247
Default: stringdefault.StaticString(string(sw.APPROVALPERMISSIONTYPE_CAN_BYPASS_APPROVAL)),
248248
},
249249
PermissionGroupNewEnvironmentApprovalType: schema.StringAttribute{
250-
Description: "Represents the environment specific change request approval permission for new Environments. Approval Flow and Scheduled Changes are in closed beta. Possible values: cannotApprove, canApproveOthers, canBypassApproval",
250+
Description: "Represents the environment specific change request approval permission for new Environments. Possible values: cannotApprove, canApproveOthers, canBypassApproval",
251251
Computed: true,
252252
Optional: true,
253253
Default: stringdefault.StaticString(string(sw.ENVIRONMENTAPPROVALPERMISSIONTYPE_CAN_BYPASS_APPROVAL)),
254254
},
255255
PermissionGroupEnvironmentApprovals: schema.MapAttribute{
256-
Description: "The environment specific approval permissions map block. Keys are the Environment IDs and the values represent the environment specific change request approval permission. Approval Flow and Scheduled Changes are in closed beta. Possible values: cannotApprove, canApproveOthers, canBypassApproval",
256+
Description: "The environment specific approval permissions map block. Keys are the Environment IDs and the values represent the environment specific change request approval permission. Possible values: cannotApprove, canApproveOthers, canBypassApproval",
257257
Computed: true,
258258
Optional: true,
259259
ElementType: types.StringType,

internal/configcat/product_preferences_resource.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,13 +104,13 @@ func (r *productPreferencesResource) Schema(ctx context.Context, req resource.Sc
104104
},
105105
},
106106
ProductPreferenceApproveRequired: schema.BoolAttribute{
107-
Description: "Indicates that a mandatory approval is required before changes are applied. Approval Flow and Scheduled Changes are in closed beta. Default: false.",
107+
Description: "Indicates that a mandatory approval is required before changes are applied. Default: false.",
108108
Optional: true,
109109
Computed: true,
110110
Default: booldefault.StaticBool(false),
111111
},
112112
ProductPreferenceApproveRequiredEnvironments: schema.MapAttribute{
113-
Description: "The environment specific mandatory approval map block. Keys are the Environment IDs and the values indicate that mandatory approval is required before changes are applied. Approval Flow and Scheduled Changes are in closed beta.",
113+
Description: "The environment specific mandatory approval map block. Keys are the Environment IDs and the values indicate that mandatory approval is required before changes are applied.",
114114
Computed: true,
115115
Optional: true,
116116
ElementType: types.BoolType,

internal/configcat/setting_resource.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ func (r *settingResource) Schema(ctx context.Context, req resource.SchemaRequest
184184

185185
PredefinedVariations: schema.ListNestedAttribute{
186186
Optional: true,
187-
Description: "The predefined variations of the " + SettingResourceName + ". The feature is currently in closed beta state and cannot be used. ",
187+
Description: "The predefined variations of the " + SettingResourceName + ".",
188188
NestedObject: schema.NestedAttributeObject{
189189
Attributes: map[string]schema.Attribute{
190190
PredefinedVariationId: schema.StringAttribute{

internal/configcat/setting_value_v2_resource.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ func createSettingValueSchema(required bool, validators []validator.Object) *sch
170170
},
171171
PredefinedVariationId: schema.StringAttribute{
172172
Optional: true,
173-
Description: "The predefined variation's ID representation of the value in case of the setting has predefined variations. The feature is currently in closed beta state and cannot be used.",
173+
Description: "The predefined variation's ID representation of the value in case of the setting has predefined variations.",
174174
Validators: []validator.String{
175175
stringvalidator.ExactlyOneOf(
176176
path.MatchRelative().AtParent().AtName(BoolValue),
@@ -351,7 +351,7 @@ func (r *settingValueV2Resource) Schema(ctx context.Context, req resource.Schema
351351
Optional: true,
352352
},
353353
BypassApproval: schema.BoolAttribute{
354-
Description: "Indicates whether the change should bypass the approval workflow. Approval Flow and Scheduled Changes are in closed beta.",
354+
Description: "Indicates whether the change should bypass the approval workflow.",
355355
Optional: true,
356356
},
357357
DefaultValue: createSettingValueSchema(true, nil),

templates/guides/predefined_variations.md.tmpl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ page_title: "Feature flag or setting with predefined variations"
44

55
# Feature flag or setting with predefined variations
66

7-
The feature is currently in closed beta state and cannot be used.
8-
97
## Prerequisites
108

119
[Get your Public Management API credentials](https://app.configcat.com/my-account/public-api-credentials) and set the following environment variables:

0 commit comments

Comments
 (0)