The required fields of oci mysql mysql db system - provide the admin user, the admin's password, the shape, the storage capacity (GB), the compartment, the AD and subnet OCID
admin's password password must be between 8 and 32 characters long, and must contain at least 1 numeric character, 1 lowercase character, 1 uppercase character, and 1 special (nonalphanumeric) character.
If you do not offer a proper password, the creation of the instance will fail
shape_name refers to the type of instance on which you want to deploy the MySQL service.
data_storage_in_gb refers to data volume in giga that must be created and attached to the instance
The resource oci_mysql_mysql_db_system will be applied in the create_mysql.tf file:
root@deploymentmachine:/home/oci_mysql# more create_mysql.tf
resource "oci_mysql_mysql_db_system" "mysql_create" {
admin_password = var.mysql_db_system_admin_password
admin_username = var.mysql_db_system_admin_username
availability_domain = var.mysql_db_system_availability_domain
compartment_id = oci_identity_compartment.MySqlOciCompartment.id
shape_name = var.mysql_shape_name
subnet_id = oci_core_subnet.MySqlOciSubnet.id
## this appear as optional in documentation
## but it is a must to add it
data_storage_size_in_gb = var.mysql_storage
}
Checking the deployed MySQL OCI in Oracle Cloud UI
Deploy the environment by using the main terraform commands:
terraform init
terraform plan
terraform apply
root@deploymentmachine:/home/oci_mysql# terraform apply
[ ... snip ... ]
Plan: 8 to add, 0 to change, 0 to destroy.
Do you want to perform these actions?
Terraform will perform the actions described above.
Only 'yes' will be accepted to approve.
Enter a value: yes
oci_identity_compartment.MySqlOciCompartment: Creating...
oci_identity_compartment.MySqlOciCompartment: Creation complete after 1s [id=ocid1.compartment.oc1..a]
data.oci_mysql_mysql_configurations.mysql_shape: Reading...
oci_core_virtual_network.MySqlOciVCN: Creating...
data.oci_mysql_mysql_configurations.mysql_shape: Read complete after 0s [id=MysqlMysqlConfigurationsDataSource-3606668890]
oci_core_virtual_network.MySqlOciVCN: Creation complete after 1s [id=ocid1.vcn.oc1.eu-frankfurt-1.aq]
oci_core_dhcp_options.MySqlOciDHCPOptions: Creating...
oci_core_internet_gateway.MySqlOciInternetGateway: Creating...
oci_core_security_list.MySqlOciSecurityList: Creating...
oci_core_internet_gateway.MySqlOciInternetGateway: Creation complete after 0s [id=ocid1.internetgateway.oc1.eu-frankfurt-1.aa]
oci_core_route_table.MySqlOciRouteTable: Creating...
oci_core_security_list.MySqlOciSecurityList: Creation complete after 0s [id=ocid1.securitylist.oc1.eu-frankfurt-1.aq]
oci_core_dhcp_options.MySqlOciDHCPOptions: Creation complete after 0s [id=ocid1.dhcpoptions.oc1.eu-frankfurt-1.aq]
oci_core_route_table.MySqlOciRouteTable: Creation complete after 0s [id=ocid1.routetable.oc1.eu-frankfurt-1.aa]
oci_core_subnet.MySqlOciSubnet: Creating...
oci_core_subnet.MySqlOciSubnet: Creation complete after 4s [id=ocid1.subnet.oc1.eu-frankfurt-1.aa]
oci_mysql_mysql_db_system.mysql_create: Creating...
oci_mysql_mysql_db_system.mysql_create: Still creating... [10s elapsed]
oci_mysql_mysql_db_system.mysql_create: Still creating... [20s elapsed]
oci_mysql_mysql_db_system.mysql_create: Still creating... [30s elapsed]
[ .... this will take a while ... ]
oci_mysql_mysql_db_system.mysql_create: Still creating... [11m40s elapsed]
oci_mysql_mysql_db_system.mysql_create: Creation complete after 11m42s [id=ocid1.mysqldbsystem.oc1.eu-frankfurt-1.aq]
Apply complete! Resources: 8 added, 0 changed, 0 destroyed.
root@deploymentmachine:/home/oci_mysql#
The deployment of the MySQL OCI service may take a while (around 15min in this case).
In the meantime, you can check in the OCI UI if the compartment has been created, along with the configuration in progress for MySQL OCI:
Go to Menu > MySQL > DB Systems
...and choose the compartment MySqlOciCompartment from List Scope:
As soon as all resources are created, the MySQL DB will be in Active status:
Destroy resources
To destroy resources, use the command "terraform destroy"
Discussion
This tutorial was meant to be a brief introduction in Terraform and MySQL DB System.
If you try to reach the MySQL DB from your machine of deployment, it will obviously fail:
root@deploymentmachine:/home/oci_mysql# mysqlsh root@10.0.1.3
Please provide the password for 'root@10.0.1.3': ***********
MySQL Shell 8.0.23
Copyright (c) 2016, 2021, Oracle and/or its affiliates.
Oracle is a registered trademark of Oracle Corporation and/or its affiliates.
Other names may be trademarks of their respective owners.
Type '\help' or '\?' for help; '\quit' to exit.
Creating a session to 'root@10.0.1.3'
MySQL Error 2003 (HY000): Can't connect to MySQL server on '10.0.1.3' (110)
cannot reach mysql from deploymentmachine.