diff --git a/internal/provider/vaultsecrets/resource_vault_secrets_rotating_secret.go b/internal/provider/vaultsecrets/resource_vault_secrets_rotating_secret.go index e47e58f1f..d07666d02 100644 --- a/internal/provider/vaultsecrets/resource_vault_secrets_rotating_secret.go +++ b/internal/provider/vaultsecrets/resource_vault_secrets_rotating_secret.go @@ -63,7 +63,7 @@ type RotatingSecret struct { AWSAccessKeys *awsAccessKeys `tfsdk:"aws_access_keys"` GCPServiceAccountKey *gcpServiceAccountKey `tfsdk:"gcp_service_account_key"` MongoDBAtlasUser *mongoDBAtlasUser `tfsdk:"mongodb_atlas_user"` - TwilioApiKey *twilioApiKey `tfsdk:"twilio_api_key"` + TwilioAPIKey *twilioAPIKey `tfsdk:"twilio_api_key"` // Computed fields OrganizationID types.String `tfsdk:"organization_id"` @@ -86,7 +86,7 @@ type mongoDBAtlasUser struct { Roles []types.String `tfsdk:"roles"` } -type twilioApiKey struct{} +type twilioAPIKey struct{} var _ resource.Resource = &resourceVaultSecretsRotatingSecret{} var _ resource.ResourceWithConfigure = &resourceVaultSecretsRotatingSecret{}