Skip to content

Commit 7ae15a0

Browse files
author
Dzmitry Kishylau
authored
[fix] Fix a bug in the usage example in the docs (#36)
1 parent acb1b6d commit 7ae15a0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ resource "retool_group" "production_apps_users" {
4545
resource "retool_permissions" "production_apps_users" {
4646
subject = {
4747
type = "group"
48-
id = retool_folder.production_apps_users.id
48+
id = retool_group.production_apps_users.id
4949
}
5050
permissions = [
5151
{
@@ -98,7 +98,7 @@ resource "retool_group" "production_apps_users" {
9898
resource "retool_permissions" "production_apps_users" {
9999
subject = {
100100
type = "group"
101-
id = retool_folder.production_apps_users.id
101+
id = retool_group.production_apps_users.id
102102
}
103103
permissions = [
104104
{

examples/provider/provider.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ resource "retool_group" "production_apps_users" {
2020
resource "retool_permissions" "production_apps_users" {
2121
subject = {
2222
type = "group"
23-
id = retool_folder.production_apps_users.id
23+
id = retool_group.production_apps_users.id
2424
}
2525
permissions = [
2626
{

examples/provider/provider_with_env_vars.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ resource "retool_group" "production_apps_users" {
1717
resource "retool_permissions" "production_apps_users" {
1818
subject = {
1919
type = "group"
20-
id = retool_folder.production_apps_users.id
20+
id = retool_group.production_apps_users.id
2121
}
2222
permissions = [
2323
{

0 commit comments

Comments
 (0)