From b002d4d3deef5de5c27297fa7899aa45a73aaaa6 Mon Sep 17 00:00:00 2001 From: Vyatcheslav Mogilevsky Date: Fri, 22 Mar 2024 08:23:01 +0100 Subject: [PATCH] docs: fix tf resource as well --- .../resources/aiven_organization_group_project/resource.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/resources/aiven_organization_group_project/resource.tf b/examples/resources/aiven_organization_group_project/resource.tf index 2c556eeab..c3c5c54c0 100644 --- a/examples/resources/aiven_organization_group_project/resource.tf +++ b/examples/resources/aiven_organization_group_project/resource.tf @@ -5,8 +5,8 @@ resource "aiven_organization_user_group" "example" { name = "Example group" } -resource "aiven_organization_user_group_project" "example" { +resource "aiven_organization_group_project" "example" { group_id = aiven_organization_user_group.example.group_id project = aiven_project.example.project role = "admin" -} \ No newline at end of file +}