Add refactored e2e tests
Signed-off-by: Somtochi Onyekwere <somtochionyekwere@gmail.com>
This commit is contained in:
committed by
Sunny
parent
1730f3c46b
commit
f6b0c6e7ef
41
tests/integration/terraform/azure/outputs.tf
Normal file
41
tests/integration/terraform/azure/outputs.tf
Normal file
@@ -0,0 +1,41 @@
|
||||
output "aks_kubeconfig" {
|
||||
description = "kubeconfig of the created AKS cluster"
|
||||
value = module.aks.kubeconfig
|
||||
sensitive = true
|
||||
}
|
||||
|
||||
output "azure_devops_access_token" {
|
||||
sensitive = true
|
||||
value = var.azuredevops_pat
|
||||
}
|
||||
|
||||
output "fleet_infra_repository" {
|
||||
value = {
|
||||
http = azuredevops_git_repository.fleet_infra.remote_url
|
||||
ssh = "ssh://git@ssh.dev.azure.com/v3/${var.azuredevops_org}/${azuredevops_git_repository.fleet_infra.project_id}/${azuredevops_git_repository.fleet_infra.name}"
|
||||
}
|
||||
}
|
||||
|
||||
output "application_repository" {
|
||||
value = {
|
||||
http = azuredevops_git_repository.application.remote_url
|
||||
ssh = "ssh://git@ssh.dev.azure.com/v3/${var.azuredevops_org}/${azuredevops_git_repository.application.project_id}/${azuredevops_git_repository.application.name}"
|
||||
}
|
||||
}
|
||||
|
||||
output "aks_client_id" {
|
||||
value = module.aks.kubelet_client_id
|
||||
}
|
||||
|
||||
output "event_hub_sas" {
|
||||
value = azurerm_eventhub_authorization_rule.this.primary_connection_string
|
||||
sensitive = true
|
||||
}
|
||||
|
||||
output "sops_id" {
|
||||
value = azurerm_key_vault_key.sops.id
|
||||
}
|
||||
|
||||
output "acr_url" {
|
||||
value = module.acr.registry_url
|
||||
}
|
||||
Reference in New Issue
Block a user