Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,9 @@ resource "netbird_account_settings" "default" {

# Custom DNS domain peers are addressable under (e.g. <peer>.futo.network).
dns_domain = "futo.network"

# Force peers to re-authenticate (SSO login) periodically. After this much
# time since last login a peer's session expires and it must log in again.
peer_login_expiration_enabled = true
peer_login_expiration = 7 * 24 * 60 * 60 # 7 days, in seconds
}
9 changes: 7 additions & 2 deletions tf/deployment/modules/shared/netbird/account/config.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,14 @@ terraform {
required_version = "~> 1.7"

required_providers {
# Fork of netbirdio/netbird that fixes the group resources<->map conversion
# crash so a group attached to a network_resource can be updated (e.g. to
# set peers). Published to the Terraform Registry, so the source is
# fully-qualified to fetch from registry.terraform.io rather than OpenTofu's
# default registry. See futo-org/terraform-provider-netbird.
netbird = {
source = "netbirdio/netbird"
version = "0.0.9"
source = "registry.terraform.io/futo-org/netbird"
version = "1.0.1"
}
onepassword = {
source = "1Password/onepassword"
Expand Down
Loading