Skip to content

Commit c479654

Browse files
committed
updates to 1.0.9 provider resources
1 parent eaf1b31 commit c479654

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

terraform/main.tf

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
boundary = {
44
source = "hashicorp/boundary"
5-
version = "1.0.6"
5+
version = "1.0.9"
66
}
77
}
88
}
@@ -50,7 +50,7 @@ resource "boundary_user" "user" {
5050
for_each = var.users
5151
name = each.key
5252
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]
5454
scope_id = boundary_scope.org.id
5555
}
5656

@@ -61,7 +61,7 @@ resource "boundary_auth_method" "password" {
6161
scope_id = boundary_scope.org.id
6262
}
6363

64-
resource "boundary_account" "user" {
64+
resource "boundary_account_password" "user" {
6565
for_each = var.users
6666
name = each.key
6767
description = "User account for ${each.key}"

terraform/outputs.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
output "username" {
2-
value = boundary_account.user
2+
value = boundary_account_password.user
33
}

0 commit comments

Comments
 (0)