2.8 KiB
2.8 KiB
layout | page_title | sidebar_current | description |
---|---|---|---|
aws | AWS: aws_db_instance | docs-aws-resource-db-instance | Provides an RDS instance resource. |
aws_db_instance
Provides an RDS instance resource.
Example Usage
resource "aws_db_instance" "default" {
identifier = "mydb-rds"
allocated_storage = 10
engine = "mysql"
engine_version = "5.6.17"
instance_class = "db.t1.micro"
name = "mydb"
username = "foo"
password = "bar"
security_group_names = ["${aws_db_security_group.bar.name}"]
subnet_group_name = "my_database_subnet_group"
}
Argument Reference
The following arguments are supported:
allocated_storage
- (Required) The allocated storage in gigabytes.engine
- (Required) The database engine to use.engine_version
- (Required) The engine version to use.identifier
- (Required) The name of the RDS instanceinstance_class
- (Required) The instance type of the RDS instance.final_snapshot_identifier
- (Optional) The name of your final DB snapshot.name
- (Required) The DB name to create.password
- (Required) Password for the master DB user. Note that this will be stored in the state file.username
- (Required) Username for the master DB user.availability_zone
- (Optional) The AZ for the RDS instance.backup_retention_period
- (Optional) The days to retain backups for.backup_window
- (Optional) The backup window.iops
- (Optional) The amount of provisioned IOPSmaintenance_window
- (Optional) The window to perform maintenance in.multi_az
- (Optional) Specifies if the RDS instance is multi-AZport
- (Optional) The port on which the DB accepts connections.publicly_accessible
- (Optional) Bool to control if instance is publicly accessible.vpc_security_group_ids
- (Optional) List of VPC security groups to associate.skip_final_snapshot
- (Optional) Enables skipping the final snapshot on deletion.security_group_names
- (Optional) List of DB Security Groups to associate.db_subnet_group_name
- (Optional) Name of DB subnet group
Attributes Reference
The following attributes are exported:
id
- The RDS instance ID.address
- The address of the RDS instance.allocated_storage
- The amount of allocated storageavailability_zone
- The availability zone of the instancebackup_retention_period
- The backup retention periodbackup_window
- The backup windowendpoint
- The connection endpointengine
- The database engineengine_version
- The database engine versioninstance_class
- The RDS instance classmaintenance_window
- The instance maintenance windowmulti_az
- If the RDS instance is multi AZ enabledname
- The database nameport
- The database portstatus
- The RDS instance statususername
- The master username for the database