Layout
This commit is contained in:
parent
08e59d51b1
commit
62c04caf12
|
@ -129,7 +129,7 @@ every account inside the organization. This SCP allows subscription to all AWS
|
||||||
services. An account can have 5 SCPs at max. Limiting SCPs do not apply to the
|
services. An account can have 5 SCPs at max. Limiting SCPs do not apply to the
|
||||||
management account itself.
|
management account itself.
|
||||||
|
|
||||||
### User Provisioning
|
## User Provisioning
|
||||||
|
|
||||||
When using the cli command, the aws configuration and credentials are stored at `~/.aws`
|
When using the cli command, the aws configuration and credentials are stored at `~/.aws`
|
||||||
|
|
||||||
|
@ -169,7 +169,15 @@ In another region
|
||||||
aws ec2 describe-instances --output text --region us-east-1 --profile PROFILENAME
|
aws ec2 describe-instances --output text --region us-east-1 --profile PROFILENAME
|
||||||
```
|
```
|
||||||
|
|
||||||
### Amazon Resource Name (ARN)
|
### Secrets
|
||||||
|
|
||||||
|
```sh
|
||||||
|
aws secretsmanager help
|
||||||
|
aws secretsmanager list-secrets
|
||||||
|
ws secretsmanager get-secret-value --secret-id <Name> --region <region>
|
||||||
|
```
|
||||||
|
|
||||||
|
## Amazon Resource Name (ARN)
|
||||||
|
|
||||||
The [ARN](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html)
|
The [ARN](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html)
|
||||||
is a unique ID which identifies resources.
|
is a unique ID which identifies resources.
|
||||||
|
@ -180,14 +188,6 @@ A Unique ID is create through the following scheme
|
||||||
arn:aws:<service>:<region>:<account_id>:<resource_type>/<resource_name>
|
arn:aws:<service>:<region>:<account_id>:<resource_type>/<resource_name>
|
||||||
```
|
```
|
||||||
|
|
||||||
### Secrets
|
|
||||||
|
|
||||||
```sh
|
|
||||||
aws secretsmanager help
|
|
||||||
aws secretsmanager list-secrets
|
|
||||||
ws secretsmanager get-secret-value --secret-id <Name> --region <region>
|
|
||||||
```
|
|
||||||
|
|
||||||
## Virtual Private Cloud (VPC)
|
## Virtual Private Cloud (VPC)
|
||||||
|
|
||||||
Is a logic network segementation method using its own IP address range.
|
Is a logic network segementation method using its own IP address range.
|
||||||
|
|
Loading…
Reference in New Issue