File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ terraform {
2
2
required_providers {
3
3
boundary = {
4
4
source = " hashicorp/boundary"
5
- version = " 1.0.6 "
5
+ version = " 1.0.9 "
6
6
}
7
7
}
8
8
}
@@ -50,7 +50,7 @@ resource "boundary_user" "user" {
50
50
for_each = var. users
51
51
name = each. key
52
52
description = " User resource for ${ each . key } "
53
- account_ids = [boundary_account . user [each . value ]. id ]
53
+ account_ids = [boundary_account_password . user [each . value ]. id ]
54
54
scope_id = boundary_scope. org . id
55
55
}
56
56
@@ -61,7 +61,7 @@ resource "boundary_auth_method" "password" {
61
61
scope_id = boundary_scope. org . id
62
62
}
63
63
64
- resource "boundary_account " "user" {
64
+ resource "boundary_account_password " "user" {
65
65
for_each = var. users
66
66
name = each. key
67
67
description = " User account for ${ each . key } "
Original file line number Diff line number Diff line change 1
1
output "username" {
2
- value = boundary_account . user
2
+ value = boundary_account_password . user
3
3
}
You can’t perform that action at this time.
0 commit comments