Difference between revisions of "AWS::RDS::DBInstance"

From wikieduonline
Jump to navigation Jump to search
Line 4: Line 4:
 
* <code>[[aws rds create-db-instance]]</code>
 
* <code>[[aws rds create-db-instance]]</code>
  
 +
 +
== Snippets ==
 +
 +
MyDB:
 +
  Type: AWS::RDS::DBInstance
 +
  Properties:
 +
    DBSecurityGroups:
 +
    - Ref: MyDbSecurityByEC2SecurityGroup
 +
    - Ref: MyDbSecurityByCIDRIPGroup
 +
    AllocatedStorage: '5'
 +
    DBInstanceClass: db.t2.small
 +
    Engine: PostgreSQL
 +
    MasterUsername: MyName
 +
    MasterUserPassword: MyPassword
 +
  DeletionPolicy: Snapshot
  
 
== Related terms ==
 
== Related terms ==

Revision as of 19:13, 9 August 2021


Snippets

MyDB:
  Type: AWS::RDS::DBInstance
  Properties:
    DBSecurityGroups:
    - Ref: MyDbSecurityByEC2SecurityGroup
    - Ref: MyDbSecurityByCIDRIPGroup
    AllocatedStorage: '5'
    DBInstanceClass: db.t2.small
    Engine: PostgreSQL
    MasterUsername: MyName
    MasterUserPassword: MyPassword
  DeletionPolicy: Snapshot

Related terms


See also

Advertising: