Amazon Relational Database Operations: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 39: Line 39:


  Resources:
  Resources:
   RDSubnetGroup:
   PortgreSQLSubnetGroup:
     Type: "AWS::RDS::DBSubnetGroup"
     Type: AWS::RDS::DBSubnetGroup
       Properties:  
       Properties:  
         DBSubnetGroupDescription: String
         DBSubnetGroupDescription: A subnet group used by the environment's PostgreSQL instance
         DBSubnetGroupName: String
         DBSubnetGroupName: some-subnet-group
         SubnetIds:
         SubnetIds:
           - String
           - !Ref PortgreSQLSubnet
         Tags:
         Tags:
           - Resource Tag
           - Key: Name
              Value: some-subnet-group


=Deploying a RDS Instance into a Specific VPC=
=Deploying a RDS Instance into a Specific VPC=


{{Internal|Deploying a RDS Instance into a Specific VPC|Deploying a RDS Instance into a Specific VPC}}
{{Internal|Deploying a RDS Instance into a Specific VPC|Deploying a RDS Instance into a Specific VPC}}

Revision as of 18:19, 17 April 2019

Internal

Create a Database Instance with CloudFormation

AWS::RDS::DBInstance

AWS::RDS::DBInstance
Resources:
  RelationalDatabase: 
  Type: AWS::RDS::DBInstance
  DeletionPolicy: Delete
  Properties: 
    DBName: themyscira01
    DBInstanceIdentifier: !Sub ${EnvironmentName}-${MicroworldName}-postgres
    AllocatedStorage: 8
    DBInstanceClass: db.t2.micro
    Engine: postgres
    EngineVersion: 9.4.20
    MasterUsername: bn73hewc
    MasterUserPassword: ce75h9w0
    Tags: 
      - Key: Name
        Value: !Sub ${EnvironmentName}-${MicroworldName}-postgres

Return Values

Ref

Returns instance identifier (DBInstanceIdentifier).

GetAtt

  • Endpoint.Address returns the connection endpoint for the database (e.g. mystack-mydb-1apw1j4phylrk.cg034hpkmmjt.us-east-2.rds.amazonaws.com)
  • Endpoint.Port

AWS::RDS::DBSubnetGroup

AWS::RDS::DBSubnetGroup
Resources:
  PortgreSQLSubnetGroup:
    Type: AWS::RDS::DBSubnetGroup
      Properties: 
        DBSubnetGroupDescription: A subnet group used by the environment's PostgreSQL instance
        DBSubnetGroupName: some-subnet-group
        SubnetIds:
          - !Ref PortgreSQLSubnet
        Tags:
          - Key: Name
             Value: some-subnet-group

Deploying a RDS Instance into a Specific VPC

Deploying a RDS Instance into a Specific VPC