Skip to content

Commit

Permalink
cleaned up items
Browse files Browse the repository at this point in the history
  • Loading branch information
wayne-kirk-schmidt authored and perk-sumo committed Dec 14, 2022
1 parent e829da4 commit 73121b0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 0 additions & 4 deletions bin/terraform/rfsyncprep.basic.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ terraform {
variable "sumologic_access_id" {
description = "Sumo Logic API Key ID"
type = string
### default = "suoCxJJCTCaUIv"
}

output "sumologic_access_id" {
Expand All @@ -21,7 +20,6 @@ output "sumologic_access_id" {
variable "sumologic_access_key" {
description = "Sumo Logic API Key String"
type = string
### default = "TEQ0PvYgVg9ndN5Eph6MsbfuRdTMmQtOQBrXssByvISQBUu4RHyFFO5ZB2XehKES"
}

output "sumologic_access_key" {
Expand All @@ -31,7 +29,6 @@ output "sumologic_access_key" {
variable "sumologic_environment" {
description = "Sumo Logic Deployment Location"
type = string
### default = "jp"
}

output "sumologic_environment" {
Expand All @@ -41,7 +38,6 @@ output "sumologic_environment" {
variable "recorded_future_access_key" {
description = "Recorded Future API Key"
type = string
### default = "41d5884e99904cdf9a4def9626051dca"
}

output "recorded_future_access_key" {
Expand Down
3 changes: 3 additions & 0 deletions bin/terraform/rfsyncprep.cleanup.ksh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ configdir="/tmp/rfslsync_config"

terraformdir="/tmp/rfslsync_terraform"

tfcmdcount=$( which terraform | wc -l )
[[ $tfcmdcount -lt 1 ]] && exit

cd ${terraformdir}

rm -f ${outputdir}/rfsyncprep.output.tf
Expand Down
3 changes: 3 additions & 0 deletions bin/terraform/rfsyncprep.startup.ksh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ configdir="/tmp/rfslsync_config"

terraformdir="/tmp/rfslsync_terraform"

tfcmdcount=$( which terraform | wc -l )
[[ $tfcmdcount -lt 1 ]] && exit

mkdir -p ${terraformdir}
mkdir -p ${configdir}

Expand Down

0 comments on commit 73121b0

Please sign in to comment.