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"

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则