Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
appkins committed Aug 10, 2024
1 parent cf02176 commit 5c2b877
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions modules/wpa-supplicant/example/main.tf
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
module "udm_boot" {
source = "../"

wan_interface = "eth10"
mac_address = "88:96:4E:E3:A1:71"

ca_cert = file("~/Downloads/EAP-TLS_8021x_001E46-R91NH8MB302415/CA_001E46-R91NH8MB302415.pem")
client_cert = file("~/Downloads/EAP-TLS_8021x_001E46-R91NH8MB302415/Client_001E46-R91NH8MB302415.pem")
private_key = file("~/Downloads/EAP-TLS_8021x_001E46-R91NH8MB302415/PrivateKey_PKCS1_001E46-R91NH8MB302415.pem")

ssh = {
host = "ui.appkins.io"
port = 2222
username = "root"
host = "ui.appkins.io"
port = 2222
username = "root"
private_key = file("~/.ssh/id_rsa")
}
}

0 comments on commit 5c2b877

Please sign in to comment.