-
Notifications
You must be signed in to change notification settings - Fork 1
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 #22 from Ontotext-AD/TES-293-module-changes
TES-293: Minor improvements
- Loading branch information
Showing
38 changed files
with
199 additions
and
231 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 was deleted.
Oops, something went wrong.
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,19 +1,19 @@ | ||
output "public_ip_address_name" { | ||
description = "Name of the public IP address" | ||
value = azurerm_public_ip.graphdb-public-ip-address.name | ||
value = azurerm_public_ip.graphdb_public_ip_address.name | ||
} | ||
|
||
output "public_ip_address" { | ||
description = "The public IPv4 address" | ||
value = azurerm_public_ip.graphdb-public-ip-address.ip_address | ||
value = azurerm_public_ip.graphdb_public_ip_address.ip_address | ||
} | ||
|
||
output "public_ip_address_id" { | ||
description = "Identifier of the public IP address" | ||
value = azurerm_public_ip.graphdb-public-ip-address.id | ||
value = azurerm_public_ip.graphdb_public_ip_address.id | ||
} | ||
|
||
output "public_ip_address_fqdn" { | ||
description = "The assigned FQDN of the public IP address" | ||
value = azurerm_public_ip.graphdb-public-ip-address.fqdn | ||
value = azurerm_public_ip.graphdb_public_ip_address.fqdn | ||
} |
Empty file.
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,19 +1,19 @@ | ||
output "storage_account_id" { | ||
description = "Storage account identifier for storing GraphDB backups" | ||
value = azurerm_storage_account.graphdb-backup.id | ||
value = azurerm_storage_account.graphdb_backup.id | ||
} | ||
|
||
output "storage_account_name" { | ||
description = "Storage account name for storing GraphDB backups" | ||
value = azurerm_storage_account.graphdb-backup.name | ||
value = azurerm_storage_account.graphdb_backup.name | ||
} | ||
|
||
output "storage_container_id" { | ||
description = "Identifier of the storage container for GraphDB backups" | ||
value = azurerm_storage_container.graphdb-backup.id | ||
value = azurerm_storage_container.graphdb_backup.id | ||
} | ||
|
||
output "storage_container_name" { | ||
description = "Name of the storage container for GraphDB backups" | ||
value = azurerm_storage_container.graphdb-backup.name | ||
value = azurerm_storage_container.graphdb_backup.name | ||
} |
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 was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.