Skip to content
Snippets Groups Projects
output.tf 236 B
Newer Older
  • Learn to ignore specific revisions
  • Nathan Rodet's avatar
    Nathan Rodet committed
    #################
    # Public IP List
    #################
    
    output "public_ip_address" {
      value     = scaleway_instance_ip.public_ip[*].address
      sensitive = false
    
    }
    
    output "USER_PASSWORD" {
      value = var.USER_PASSWORD
    
      sensitive = false
    
    Nathan Rodet's avatar
    Nathan Rodet committed
    }