Cloud formation template for modifying the compute type of AWS Workspaces

0

HI All, I had used AWS service catalog to enable self service provisioning of AWS workspaces via service now. However I am not able to perform the modification of Workspaces 'Compute Type'. Is there any reference cloud formation template which is available for performing the AWS workspaces modification?.

已提問 1 年前檢視次數 319 次
1 個回答
0

Hello,

The ComputeType is an attribute from the WorkspaceProperties entity, which have the following elements:

  ComputeTypeName: String
  RootVolumeSizeGib: Integer
  RunningMode: String
  RunningModeAutoStopTimeoutInMinutes: Integer
  UserVolumeSizeGib: Integer

See the full reference: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html

For an example you can check https://github.com/aws-samples/aws-workspaces-cloudformation-template/blob/main/Workspace.yaml In this case, for example, you will need to add the ComputeTypeName in:

      WorkspaceProperties:
        RunningMode: !Ref RunningModeType
        ComputeTypeName: !Ref ComputeType
profile picture
已回答 1 年前
  • Thanks for your response @sauerkraut. The issue is when it try to modify the cloud formation template is failing stating that the "bundle ID cannot be updated by itself"

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南