Horje
cloudformation create iam user with access key Code Example
cloudformation create iam user with access key
---
AWSTemplateFormatVersion: 2010-09-09
Description: example bot user

Resources:

  Bot:
    Type: AWS::IAM::User
    Properties:
      Path: /bot/
      UserName: !Ref AWS::StackName

  BotCredentials:
    Type: AWS::IAM::AccessKey
    Properties:
      Status: Active
      UserName: !Ref Bot

  BotCredentialsStored:
    Type: AWS::SecretsManager::Secret
    Properties:
      Name: !Sub /bot/credentials/${Bot}
      SecretString: !Sub '{"ACCESS_KEY":"${BotCredentials}","SECRET_KEY":"${BotCredentials.SecretAccessKey}"}'




Whatever

Related
payment gateway and processor south africa Code Example payment gateway and processor south africa Code Example
form data Code Example form data Code Example
#180053 hex to rgb Code Example #180053 hex to rgb Code Example
roblox superhero games Code Example roblox superhero games Code Example
zimbra smtp relay authentication with multiple domains Code Example zimbra smtp relay authentication with multiple domains Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7