File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1313 * See the License for the specific language governing permissions and
1414 * limitations under the License.
1515 */
16-
16+
1717resource "google_sql_database_instance" "master" {
1818 name = " ${ var . name } "
1919 project = " ${ var . project } "
@@ -29,6 +29,10 @@ resource "google_sql_database_instance" "master" {
2929 ip_configuration = [" ${ var . ip_configuration } " ]
3030 location_preference = [" ${ var . location_preference } " ]
3131 maintenance_window = [" ${ var . maintenance_window } " ]
32+ disk_size = " ${ var . disk_size } "
33+ disk_type = " ${ var . disk_type } "
34+ pricing_plan = " ${ var . pricing_plan } "
35+ replication_type = " ${ var . replication_type } "
3236 }
3337
3438 replica_configuration = [" ${ var . replica_configuration } " ]
Original file line number Diff line number Diff line change 1313 * See the License for the specific language governing permissions and
1414 * limitations under the License.
1515 */
16-
16+
1717output instance_name {
1818 description = " The name of the database instance"
1919 value = " ${ google_sql_database_instance . master . name } "
Original file line number Diff line number Diff line change 1313 * See the License for the specific language governing permissions and
1414 * limitations under the License.
1515 */
16-
16+
1717variable project {
1818 description = " The project to deploy to, if not set the default provider project is used."
1919 default = " "
You can’t perform that action at this time.
0 commit comments