mirror of
https://github.com/kemko/nomad.git
synced 2026-01-01 16:05:42 +03:00
ci: run 'make check' as reusable workflow (#17600)
Some of the paths ignored by `test-core.yaml` need to be checked by `make check`. The `checks.yaml` workflow run on these paths and can also be used as a reusable workflow.
This commit is contained in:
@@ -96,11 +96,11 @@ resource "azurerm_network_security_rule" "hashistack-sgr-8500" {
|
||||
}
|
||||
|
||||
resource "azurerm_public_ip" "hashistack-server-public-ip" {
|
||||
count = "${var.server_count}"
|
||||
name = "hashistack-server-ip-${count.index}"
|
||||
location = "${var.location}"
|
||||
resource_group_name = "${azurerm_resource_group.hashistack.name}"
|
||||
allocation_method = "Static"
|
||||
count = "${var.server_count}"
|
||||
name = "hashistack-server-ip-${count.index}"
|
||||
location = "${var.location}"
|
||||
resource_group_name = "${azurerm_resource_group.hashistack.name}"
|
||||
allocation_method = "Static"
|
||||
}
|
||||
|
||||
resource "azurerm_network_interface" "hashistack-server-ni" {
|
||||
@@ -173,11 +173,11 @@ data "template_file" "user_data_server" {
|
||||
}
|
||||
|
||||
resource "azurerm_public_ip" "hashistack-client-public-ip" {
|
||||
count = "${var.client_count}"
|
||||
name = "hashistack-client-ip-${count.index}"
|
||||
location = "${var.location}"
|
||||
resource_group_name = "${azurerm_resource_group.hashistack.name}"
|
||||
allocation_method = "Static"
|
||||
count = "${var.client_count}"
|
||||
name = "hashistack-client-ip-${count.index}"
|
||||
location = "${var.location}"
|
||||
resource_group_name = "${azurerm_resource_group.hashistack.name}"
|
||||
allocation_method = "Static"
|
||||
}
|
||||
|
||||
resource "azurerm_network_interface" "hashistack-client-ni" {
|
||||
|
||||
Reference in New Issue
Block a user