You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+21Lines changed: 21 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,24 @@
1
+
# 1.85.0 (November 9, 2025)
2
+
3
+
## Bug Fixes
4
+
5
+
### Power Systems
6
+
* Refactor terraform errors to use new toolchain in nag and ni data sources ([6525](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/6525))
7
+
* Refactor terraform errors to use new toolchain in nsg, network_port, and network peer data sources ([6529](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/6529))
8
+
9
+
### VPC Infrastructure
10
+
* Fix example in share docs ([6534](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/6534))
11
+
12
+
13
+
## Enhancements
14
+
15
+
### IAM
16
+
* add new account settings ([6538](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/6538))
17
+
18
+
### Power Systems
19
+
* Deprecate Arg_VolumeName for Arg_VolumeID ([6508](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/6508))
20
+
* Add new ibm_pi_volumes data source and documentation ([6520](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/6520))
Copy file name to clipboardExpand all lines: ibm/acctest/acctest.go
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -250,7 +250,7 @@ var (
250
250
Pi_placement_group_idstring
251
251
Pi_remote_idstring
252
252
Pi_remote_typestring
253
-
Pi_replication_volume_namestring
253
+
Pi_replication_volume_idstring
254
254
Pi_resource_group_idstring
255
255
Pi_route_filter_idstring
256
256
Pi_route_idstring
@@ -1276,10 +1276,10 @@ func init() {
1276
1276
fmt.Println("[INFO] Set the environment variable PI_VOLUME_ID for testing ibm_pi_volume_flash_copy_mappings resource else it is set to default value 'terraform-test-power'")
fmt.Println("[INFO] Set the environment variable PI_REPLICATION_VOLUME_NAME for testing ibm_pi_volume resource else it is set to default value 'terraform-test-power'")
fmt.Println("[INFO] Set the environment variable PI_REPLICATION_VOLUME_ID for testing ibm_pi_volume resource else it is set to default value 'terraform-test-power'")
Description: "Defines the refresh token expiration in seconds. Valid values: * Any whole number between '900' and '259200' * NOT_SET - To unset account setting and use service default.",
134
134
},
135
+
"restrict_user_list_visibility": {
136
+
Type: schema.TypeString,
137
+
Computed: true,
138
+
Description: "Defines whether or not user visibility is access controlled. Valid values: * RESTRICTED - users can view only specific types of users in the account, such as those the user has invited to the account, or descendants of those users based on the classic infrastructure hierarchy * NOT_RESTRICTED - any user in the account can view other users from the Users page in IBM Cloud console * NOT_SET - to 'unset' a previous set value.",
139
+
},
140
+
"restrict_user_domains": {
141
+
Type: schema.TypeList,
142
+
Computed: true,
143
+
Elem: &schema.Resource{
144
+
Schema: map[string]*schema.Schema{
145
+
"account_sufficient": &schema.Schema{
146
+
Type: schema.TypeBool,
147
+
Computed: true,
148
+
},
149
+
"restrictions": &schema.Schema{
150
+
Type: schema.TypeList,
151
+
Computed: true,
152
+
Description: "Defines if account invitations are restricted to specified domains. To remove an entry for a realm_id, perform an update (PUT) request with only the realm_id set.",
153
+
Elem: &schema.Resource{
154
+
Schema: map[string]*schema.Schema{
155
+
"realm_id": &schema.Schema{
156
+
Type: schema.TypeString,
157
+
Computed: true,
158
+
Description: "The realm that the restrictions apply to.",
Description: "The list of allowed email patterns. Wildcard syntax is supported, '*' represents any sequence of zero or more characters in the string, except for '.' and '@'. The sequence ends if a '.' or '@' was found. '**' represents any sequence of zero or more characters in the string - without limit.",
164
+
Elem: &schema.Schema{
165
+
Type: schema.TypeString,
166
+
},
167
+
},
168
+
"restrict_invitation": &schema.Schema{
169
+
Type: schema.TypeBool,
170
+
Computed: true,
171
+
Description: "When true invites will only be possible to the domain patterns provided, otherwise invites are unrestricted.",
172
+
},
173
+
},
174
+
},
175
+
},
176
+
},
177
+
},
178
+
},
135
179
},
136
180
},
137
181
},
@@ -323,7 +367,7 @@ func dataSourceIBMAccountSettingsTemplateRead(context context.Context, d *schema
Description: "Defines whether or not user visibility is access controlled. Valid values: * RESTRICTED - users can view only specific types of users in the account, such as those the user has invited to the account, or descendants of those users based on the classic infrastructure hierarchy * NOT_RESTRICTED - any user in the account can view other users from the Users page in IBM Cloud console.",
424
+
},
425
+
"restrict_user_domains": {
426
+
Type: schema.TypeList,
427
+
Computed: true,
428
+
Elem: &schema.Resource{
429
+
Schema: map[string]*schema.Schema{
430
+
"account_sufficient": {
431
+
Type: schema.TypeBool,
432
+
Computed: true,
433
+
},
434
+
"restrictions": &schema.Schema{
435
+
Type: schema.TypeList,
436
+
Computed: true,
437
+
Description: "Defines if account invitations are restricted to specified domains. To remove an entry for a realm_id, perform an update (PUT) request with only the realm_id set.",
438
+
Elem: &schema.Resource{
439
+
Schema: map[string]*schema.Schema{
440
+
"realm_id": &schema.Schema{
441
+
Type: schema.TypeString,
442
+
Computed: true,
443
+
Description: "The realm that the restrictions apply to.",
Description: "The list of allowed email patterns. Wildcard syntax is supported, '*' represents any sequence of zero or more characters in the string, except for '.' and '@'. The sequence ends if a '.' or '@' was found. '**' represents any sequence of zero or more characters in the string - without limit.",
449
+
Elem: &schema.Schema{
450
+
Type: schema.TypeString,
451
+
},
452
+
},
453
+
"restrict_invitation": &schema.Schema{
454
+
Type: schema.TypeBool,
455
+
Computed: true,
456
+
Description: "When true invites will only be possible to the domain patterns provided, otherwise invites are unrestricted.",
0 commit comments