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

From wikieduonline
Jump to navigation Jump to search
Line 2: Line 2:
 
* Template [[snippets]]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/quickref-rds.html
 
* Template [[snippets]]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/quickref-rds.html
  
* <code>[[aws rds create-db-instance]]</code>
+
 
  
  
Line 29: Line 29:
 
* <code>[[Fn::GetAtt]]</code>
 
* <code>[[Fn::GetAtt]]</code>
 
* [[AWS Free Tier]]
 
* [[AWS Free Tier]]
 +
* <code>[[aws rds create-db-instance]]</code>
  
 
== See also ==
 
== See also ==

Revision as of 09:30, 29 September 2021



Snippets

PostgreSQL AWS Free Tier: db.t2.micro and 20 GB of database storage and backup.

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

Related terms

See also

Advertising: