We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the module : 2-sec-vnet/main.tf, line 114/115
value = random_password.vnet_peering.result end_date_relative = "17520h"
gives the below error when I run "terraform validate".
Error: Unsupported argument
As an alternative, the below can be used
time = { source = "registry.terraform.io/hashicorp/time" version = "~> 0.7.2" }
resource "time_rotating" "vnet_peering" { rotation_days = 7 } resource "azuread_service_principal_password" "vnet_peering" { service_principal_id = azuread_service_principal.vnet_peering.id keepers = { rotation = time_rotating.vnet_peering.id } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the module : 2-sec-vnet/main.tf, line 114/115
gives the below error when I run "terraform validate".
Error: Unsupported argument
As an alternative, the below can be used
TERRAFORM CONFIG
RESOURCES
The text was updated successfully, but these errors were encountered: