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
feat: Support for the Web Service feature on the LSF Cluster and IBM Storage Scale in the DA module (#283)
- Support for the Web Service feature on the LSF Cluster
- IBM Storage Scale on the DA module
- Bug fix on the ibmcloudgen2 Resource connector
- Support of all the GUI nodes on the management 2 node
- Code enhancements to support the LSF node unreachable
---------
Co-authored-by: Nupur Goyal <[email protected]>
Co-authored-by: Sagar BK <[email protected]>
Copy file name to clipboardExpand all lines: tools/access-management/README.md
+3-4Lines changed: 3 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ For example, for the App configuration service, the user requires Administrator
8
8
9
9
### Benefits of the scripts:
10
10
11
-
#### Interactive input collection - The script prompts for the IBMid (admin email), Resource Group ID, Account ID, and target (User or Access Group).
11
+
#### Interactive input collection - The script prompts for the IBMid (admin email), Account ID, and target (User or Access Group).
12
12
13
13
#### Permission check - The script verifies that the admin has account-level Administrator rights which is required to assign policies.
14
14
@@ -34,7 +34,7 @@ chmod +x permissions.sh
34
34
35
35
3. Enter the admin email or IBMid.
36
36
37
-
4. Enter the Resource group and Account ID.
37
+
4. Enter the Account ID.
38
38
39
39
For the Account ID, login to the IBM Cloud account by using your unique credentials. Go to Manage > Account > Account settings. You will find the Account ID.
40
40
@@ -50,10 +50,9 @@ Select the required option.
50
50
51
51
7. User policy is successfully created.
52
52
53
-
If the user skips to enter the RESOURCE_GROUP_ID or the ACCOUNT_ID, then script displays the error message:
53
+
If the user skips to enter the ACCOUNT_ID, then script displays the error message:
@@ -234,14 +245,12 @@ if [ -n "$ACCESS_GROUP" ] && [ -z "$USER_EMAIL" ]; then
234
245
echo" • Adding roles : $NEW_ROLES"
235
246
236
247
ibmcloud iam access-group-policy-update "$ACCESS_GROUP""$POLICY_ID" \
237
-
--roles "$MERGED_SORTED" \
238
-
--resource-group-id "$RESOURCE_GROUP_ID"||echo"⚠️ Failed to update Administrator,Manager roles for All Identity and Access enabled services to access group: $ACCESS_GROUP"
248
+
--roles "$MERGED_SORTED"||echo"⚠️ Failed to update Administrator,Manager roles for All Identity and Access enabled services to access group: $ACCESS_GROUP"
239
249
fi
240
250
else
241
251
echo"➕ Creating new global Administrator/Manager policy for access group: $ACCESS_GROUP"
242
252
ibmcloud iam access-group-policy-create "$ACCESS_GROUP" \
243
-
--roles "Administrator,Manager" \
244
-
--resource-group-id "$RESOURCE_GROUP_ID"||echo"⚠️ Failed to assign Administrator,Manager roles for All Identity and Access enabled services to access group: $ACCESS_GROUP"
253
+
--roles "Administrator,Manager"||echo"⚠️ Failed to assign Administrator,Manager roles for All Identity and Access enabled services to access group: $ACCESS_GROUP"
ibmcloud iam user-policy-update "$USER_EMAIL""$POLICY_ID" \
325
-
--roles "$MERGED_SORTED" \
326
-
--resource-group-id "$RESOURCE_GROUP_ID"||echo"⚠️ Failed to update Administrator,Manager roles for All Identity and Access enabled services to user: $USER_EMAIL"
328
+
--roles "$MERGED_SORTED"||echo"⚠️ Failed to update Administrator,Manager roles for All Identity and Access enabled services to user: $USER_EMAIL"
327
329
fi
328
330
else
329
331
echo"➕ Creating new global Administrator/Manager policy for $USER_EMAIL"
330
332
ibmcloud iam user-policy-create "$USER_EMAIL" \
331
-
--roles "Administrator,Manager" \
332
-
--resource-group-id "$RESOURCE_GROUP_ID"||echo"⚠️ Failed to assign Administrator,Manager roles for All Identity and Access enabled services to user: $USER_EMAIL"
333
+
--roles "Administrator,Manager"||echo"⚠️ Failed to assign Administrator,Manager roles for All Identity and Access enabled services to user: $USER_EMAIL"
error_message="If you want to provide null for resource_group variable, it should be within double quotes."
26
26
}
27
27
}
@@ -197,17 +197,6 @@ variable "cluster_name" {
197
197
}
198
198
}
199
199
200
-
# tflint-ignore: terraform_unused_declarations
201
-
variable"reservation_id" {
202
-
type=string
203
-
sensitive=true
204
-
description="Ensure that you have received the reservation ID from IBM technical sales. Reservation ID is a unique identifier to distinguish different IBM Cloud HPC service agreements. It must start with a letter and can only contain letters, numbers, hyphens (-), or underscores (_)."
0 commit comments