Skip to content

Commit

Permalink
UPDATE - Ran terraform fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
bdewulfPersonal committed Jan 29, 2024
1 parent d050532 commit a7ff97f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions modules/terraform-aci-link-level-policy/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ resource "aci_rest_managed" "fabricHIfPol" {
dn = "uni/infra/hintfpol-${var.name}"
class_name = "fabricHIfPol"
content = {
name = var.name
speed = var.speed
autoNeg = var.auto == true ? "on" : "off"
fecMode = var.fec_mode
portPhyMediaType = try(var.physical_media_type, null) != null ? var.physical_media_type : null
name = var.name
speed = var.speed
autoNeg = var.auto == true ? "on" : "off"
fecMode = var.fec_mode
portPhyMediaType = try(var.physical_media_type, null) != null ? var.physical_media_type : null
}
}

0 comments on commit a7ff97f

Please sign in to comment.