-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from kumarvna/develop
updating examples
- Loading branch information
Showing
8 changed files
with
25 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
module "mariadb" { | ||
module "mariadb-server" { | ||
source = "kumarvna/mariadb-server/azurerm" | ||
version = "1.0.0" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,34 @@ | ||
output "resource_group_name" { | ||
description = "The name of the resource group in which resources are created" | ||
value = module.mariadb.resource_group_name | ||
value = module.mariadb-server.resource_group_name | ||
} | ||
|
||
output "resource_group_location" { | ||
description = "The location of the resource group in which resources are created" | ||
value = module.mariadb.resource_group_location | ||
value = module.mariadb-server.resource_group_location | ||
} | ||
|
||
output "storage_account_id" { | ||
description = "The ID of the storage account" | ||
value = module.mariadb.storage_account_id | ||
value = module.mariadb-server.storage_account_id | ||
} | ||
|
||
output "storage_account_name" { | ||
description = "The name of the storage account" | ||
value = module.mariadb.storage_account_name | ||
value = module.mariadb-server.storage_account_name | ||
} | ||
|
||
output "mariadb_server_id" { | ||
description = "The resource ID of the MariaDB Server" | ||
value = module.mariadb.mariadb_server_id | ||
value = module.mariadb-server.mariadb_server_id | ||
} | ||
|
||
output "mariadb_server_fqdn" { | ||
description = "The FQDN of the MariaDB Server" | ||
value = module.mariadb.mariadb_server_fqdn | ||
value = module.mariadb-server.mariadb_server_fqdn | ||
} | ||
|
||
output "mariadb_database_id" { | ||
description = "The resource ID of the MariaDB Database" | ||
value = module.mariadb.mariadb_database_id | ||
value = module.mariadb-server.mariadb_database_id | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
module "mariadb" { | ||
module "mariadb-server" { | ||
source = "kumarvna/mariadb-server/azurerm" | ||
version = "1.0.0" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,54 @@ | ||
output "resource_group_name" { | ||
description = "The name of the resource group in which resources are created" | ||
value = module.mariadb.resource_group_name | ||
value = module.mariadb-server.resource_group_name | ||
} | ||
|
||
output "resource_group_location" { | ||
description = "The location of the resource group in which resources are created" | ||
value = module.mariadb.resource_group_location | ||
value = module.mariadb-server.resource_group_location | ||
} | ||
|
||
output "storage_account_id" { | ||
description = "The ID of the storage account" | ||
value = module.mariadb.storage_account_id | ||
value = module.mariadb-server.storage_account_id | ||
} | ||
|
||
output "storage_account_name" { | ||
description = "The name of the storage account" | ||
value = module.mariadb.storage_account_name | ||
value = module.mariadb-server.storage_account_name | ||
} | ||
|
||
output "mariadb_server_id" { | ||
description = "The resource ID of the MariaDB Server" | ||
value = module.mariadb.mariadb_server_id | ||
value = module.mariadb-server.mariadb_server_id | ||
} | ||
|
||
output "mariadb_server_fqdn" { | ||
description = "The FQDN of the MariaDB Server" | ||
value = module.mariadb.mariadb_server_fqdn | ||
value = module.mariadb-server.mariadb_server_fqdn | ||
} | ||
|
||
output "mariadb_database_id" { | ||
description = "The resource ID of the MariaDB Database" | ||
value = module.mariadb.mariadb_database_id | ||
value = module.mariadb-server.mariadb_database_id | ||
} | ||
|
||
output "mariadb_server_private_endpoint" { | ||
description = "id of the MariaDB server Private Endpoint" | ||
value = module.mariadb.mariadb_server_private_endpoint | ||
value = module.mariadb-server.mariadb_server_private_endpoint | ||
} | ||
|
||
output "mariadb_server_private_dns_zone_domain" { | ||
description = "DNS zone name of MariaDB server Private endpoints dns name records" | ||
value = module.mariadb.mariadb_server_private_dns_zone_domain | ||
value = module.mariadb-server.mariadb_server_private_dns_zone_domain | ||
} | ||
|
||
output "mariadb_server_private_endpoint_ip" { | ||
description = "MariaDB server private endpoint IPv4 Addresses " | ||
value = module.mariadb.mariadb_server_private_endpoint_ip | ||
value = module.mariadb-server.mariadb_server_private_endpoint_ip | ||
} | ||
|
||
output "mariadb_server_private_endpoint_fqdn" { | ||
description = "MariaDB server private endpoint FQDN Addresses " | ||
value = module.mariadb.mariadb_server_private_endpoint_fqdn | ||
value = module.mariadb-server.mariadb_server_private_endpoint_fqdn | ||
} |