Skip to content

Commit

Permalink
[fix] Fix a bug in the usage example in the docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Dzmitry Kishylau committed Sep 19, 2024
1 parent acb1b6d commit f2a6ff4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ resource "retool_group" "production_apps_users" {
resource "retool_permissions" "production_apps_users" {
subject = {
type = "group"
id = retool_folder.production_apps_users.id
id = retool_group.production_apps_users.id
}
permissions = [
{
Expand Down Expand Up @@ -98,7 +98,7 @@ resource "retool_group" "production_apps_users" {
resource "retool_permissions" "production_apps_users" {
subject = {
type = "group"
id = retool_folder.production_apps_users.id
id = retool_group.production_apps_users.id
}
permissions = [
{
Expand Down
2 changes: 1 addition & 1 deletion examples/provider/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ resource "retool_group" "production_apps_users" {
resource "retool_permissions" "production_apps_users" {
subject = {
type = "group"
id = retool_folder.production_apps_users.id
id = retool_group.production_apps_users.id
}
permissions = [
{
Expand Down
2 changes: 1 addition & 1 deletion examples/provider/provider_with_env_vars.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ resource "retool_group" "production_apps_users" {
resource "retool_permissions" "production_apps_users" {
subject = {
type = "group"
id = retool_folder.production_apps_users.id
id = retool_group.production_apps_users.id
}
permissions = [
{
Expand Down

0 comments on commit f2a6ff4

Please sign in to comment.