mirror of
https://github.com/trailofbits/algo.git
synced 2025-06-06 15:13:56 +02:00
Update deploy-from-ansible.md (#1307)
This commit is contained in:
parent
b8e1c253c6
commit
b89d406ee0
1 changed files with 22 additions and 0 deletions
|
@ -202,6 +202,28 @@ Required variables:
|
||||||
|
|
||||||
Possible options can be gathered via cli `aws lightsail get-regions`
|
Possible options can be gathered via cli `aws lightsail get-regions`
|
||||||
|
|
||||||
|
#### Minimum required IAM permissions for deployment:
|
||||||
|
|
||||||
|
```
|
||||||
|
{
|
||||||
|
"Version": "2012-10-17",
|
||||||
|
"Statement": [
|
||||||
|
{
|
||||||
|
"Sid": "LightsailDeployment",
|
||||||
|
"Effect": "Allow",
|
||||||
|
"Action": [
|
||||||
|
"lightsail:GetInstance",
|
||||||
|
"lightsail:CreateInstances",
|
||||||
|
"lightsail:OpenInstancePublicPorts"
|
||||||
|
],
|
||||||
|
"Resource": [
|
||||||
|
"*"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
### Scaleway
|
### Scaleway
|
||||||
|
|
||||||
Required variables:
|
Required variables:
|
||||||
|
|
Loading…
Add table
Reference in a new issue