Skip to content
Open
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
4 changes: 1 addition & 3 deletions main/ip-output/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,4 @@ data "local_file" "read_ip" {

output "scalr_ip" {
value = "Current instance IP is: ${data.local_file.read_ip.content}"
}

# comment
}
36 changes: 0 additions & 36 deletions main/local_wait/main.tf
Original file line number Diff line number Diff line change
@@ -1,41 +1,5 @@
variable "sleep_time" {
default = 1
}

resource "null_resource" "nr" {
triggers = {
trigger = timestamp()
}
provisioner "local-exec" {
command = "sleep ${var.sleep_time}"
}
}

resource "random_pet" "rp" {
keepers = {
keeper = timestamp()
}
}

output "sleep_time" {
value = var.sleep_time
sensitive = false
}

output "long" {
value = "The Adepta Sororitas, colloquially called the 'Sisterhood', whose military arm is also known as the Sisters of Battle and formerly as the Daughters of the Emperor, are an all-female division of the Imperium of Man's state church known as the Ecclesiarchy or, more formally, as the Adeptus Ministorum. The Sisterhood's Orders Militant serve as the Ecclesiarchy's armed forces, mercilessly rooting out spiritual corruption and heresy within Humanity and every organisation of the Adeptus Terra. There is naturally some overlap between the duties of the Sisterhood and the Imperial Inquisition; for this reason, although the Inquisition and the Sisterhood remain entirely separate organisations, the Orders Militant of the Adepta Sororitas also act as the Chamber Militant of the Inquisition's Ordo Hereticus. The Adepta Sororitas and the Sisters of Battle are commonly regarded as the same organisation, but the latter title technically refers only to the Orders Militant of the Adepta Sororitas, the best-known part of the organisation to the Imperial public."
}

output "sensitive" {
value = "Sensitive value that shouldn't be exposed"
description = "Sensitive output"
sensitive = true
}

output "run_time" {
value = timestamp()
}

output "workspace_name" {
value = terraform.workspace
}
1 change: 1 addition & 0 deletions main/no_vars/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ resource "null_resource" "no_vars" {
}

resource "terraform_data" "new" {
count = 2
input = "static"
}