From 5bb9ee81417164389c8964b59d4115af46022f44 Mon Sep 17 00:00:00 2001 From: Nicolas Singh Oteiza Date: Wed, 27 Jan 2021 11:21:27 -0300 Subject: [PATCH] Fix time_rotating argument name One of the example definitions shows `rotate_days` as argument of `time_rotating` resource. This argument should be called `rotation_days `, as defined at the current [resource documentation](https://registry.terraform.io/providers/hashicorp/time/latest/docs/resources/rotating#rotation_days) (as of today using version `0.6.0`). --- website/docs/r/google_service_account_key.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/r/google_service_account_key.html.markdown b/website/docs/r/google_service_account_key.html.markdown index b55392ca43c..af6c7c862cd 100644 --- a/website/docs/r/google_service_account_key.html.markdown +++ b/website/docs/r/google_service_account_key.html.markdown @@ -35,7 +35,7 @@ resource "google_service_account" "myaccount" { # note this requires the terraform to be run regularly resource "time_rotating" "mykey_rotation" { - rotate_days = 30 + rotation_days = 30 } resource "google_service_account_key" "mykey" {