Skip to content

Commit

Permalink
actions fix, ssh key for f5xc
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcalalang committed Dec 7, 2023
1 parent 1a8357f commit 93e092c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,7 @@ jobs:
# Environment Variables
env:
TF_VAR_f5xc-cloud-credential: ${{ secrets.F5XC_CLOUD_CREDENTIAL }}
TF_VAR_f5xc-customer-edge-ssh-key: ${{ secrets.F5XC_CUSTOMER_EDGE_SSH_KEY }}
VES_P12_PASSWORD: ${{ secrets.VES_P12_PASSWORD }}

# Where are the Terraform files
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ resource "volterra_azure_vnet_site" "f5xc-azure-site" {
environment = var.label-environment
}

// SSH Key for CE Access
ssh_key = [var.f5xc-customer-edge-ssh-key]

// Machine Type
machine_type = "Standard_D3_v2"

Expand Down
4 changes: 4 additions & 0 deletions distributed-cloud/terraform/infrastructure/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ variable "label-environment" {
type = string
description = "Environment"
}
variable "f5xc-customer-edge-ssh-key" {
type = string
description = "SSH key for accessing the customer edge"
}

# F5 Distributed Cloud Kubernetes Cluster
variable "mk8s-name" {
Expand Down

0 comments on commit 93e092c

Please sign in to comment.