Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/source/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -273,17 +273,17 @@ master_root_volume_size
"""""""""""""""""""""""
MasterServer root volume size in GB. (AMI must support growroot)

Defaults to 10 in default template. ::
Defaults to 15 in default template. ::

master_root_volume_size = 10
master_root_volume_size = 15

compute_root_volume_size
""""""""""""""""""""""""
ComputeFleet root volume size in GB. (AMI must support growroot)

Defaults to 10 in default template. ::
Defaults to 15 in default template. ::

compute_root_volume_size = 10
compute_root_volume_size = 15

base_os
"""""""
Expand Down Expand Up @@ -378,7 +378,7 @@ Tags are JSON formatted and should not have quotes outside the curly braces.

See `AWS CloudFormation Resource Tags Type <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_. ::

tags = {"key": "value", "key2", "value2"}
tags = {"key" : "value", "key2" : "value2"}

.. _vpc_section:

Expand Down
20 changes: 14 additions & 6 deletions docs/source/iam.rst
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,8 @@ CfnClusterUserPolicy
"ec2:DescribeVpcAttribute",
"ec2:DescribeAddresses",
"ec2:CreateTags",
"ec2:DescribeNetworkInterfaces"
"ec2:DescribeNetworkInterfaces",
"ec2:DescribeAvailabilityZones"
],
"Effect": "Allow",
"Resource": "*"
Expand All @@ -162,7 +163,10 @@ CfnClusterUserPolicy
"ec2:CreateNetworkInterface",
"ec2:CreateSecurityGroup",
"ec2:ModifyVolumeAttribute",
"ec2:ModifyNetworkInterfaceAttribute"
"ec2:ModifyNetworkInterfaceAttribute",
"ec2:DeleteNetworkInterface",
"ec2:DeleteVolume",
"ec2:TerminateInstances"
],
"Effect": "Allow",
"Resource": "*"
Expand Down Expand Up @@ -200,7 +204,8 @@ CfnClusterUserPolicy
{
"Sid": "DynamoDBModify",
"Action": [
"dynamodb:CreateTable"
"dynamodb:CreateTable",
"dynamodb:DeleteTable"
],
"Effect": "Allow",
"Resource": "*"
Expand All @@ -225,15 +230,17 @@ CfnClusterUserPolicy
"Sid": "SQSModify",
"Action": [
"sqs:CreateQueue",
"sqs:SetQueueAttributes"
"sqs:SetQueueAttributes",
"sqs:DeleteQueue"
],
"Effect": "Allow",
"Resource": "*"
},
{
"Sid": "SNSDescribe",
"Action": [
"sns:ListTopics"
"sns:ListTopics",
“sns:GetTopicAttributes"
],
"Effect": "Allow",
"Resource": "*"
Expand All @@ -242,7 +249,8 @@ CfnClusterUserPolicy
"Sid": "SNSModify",
"Action": [
"sns:CreateTopic",
"sns:Subscribe"
"sns:Subscribe",
“sns:DeleteTopic”
],
"Effect": "Allow",
"Resource": "*"
Expand Down