Skip to content

Instantly share code, notes, and snippets.

@motowilliams
Created April 3, 2018 17:23
Show Gist options
  • Save motowilliams/e344e6aaa0b84f546f90b89c4db20cc9 to your computer and use it in GitHub Desktop.
Save motowilliams/e344e6aaa0b84f546f90b89c4db20cc9 to your computer and use it in GitHub Desktop.
Start of replicating the ARM uniqueString function
resource "null_resource" "naming" {
triggers {
nameSuffix = "${var.environment}${substr(sha256(format(var.resourceGroupName,var.location,var.subscription_id)),0,13)}"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment