Skip to content

Instantly share code, notes, and snippets.

@viktors-telle
Created March 4, 2020 20:21
Show Gist options
  • Save viktors-telle/ceb7e689bd9e719f75afae4aad42bfc9 to your computer and use it in GitHub Desktop.
Save viktors-telle/ceb7e689bd9e719f75afae4aad42bfc9 to your computer and use it in GitHub Desktop.
Terraform module example.
module "sql-server" {
source = "./modules/sql-server"
resource_group_name = var.resource_group_name
location = var.location
common_tags = local.common_tags
sql_server_name = var.sql_server_name
sql_administrator_login = var.sql_administrator_login
sql_administrator_password = var.sql_administrator_password
sql_firewall_rules = var.sql_firewall_rules
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment