This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
provider "aws" { | |
region = "us-east-1" | |
} | |
data "aws_caller_identity" "current" {} | |
data "aws_vpc" "vpc" { | |
filter { | |
name = "tag:Name" | |
values = [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Making the Switch from RHEL to Ubuntu Server? | |
# I needed to start supporting Ubuntu 12.0.4 Servers after three years of working with Scientific Linux 5/6 (RHEL-variant) | |
# This is the cheatsheet I put together to help get over some of the differences | |
# Last Edit 20130508 | |
_Root_ | |
The root account is not enabled by default. Ubuntu wants to to use sudo to elevate privileges. The first created account will be an administrator in the sudoers group. | |
Config file: /etc/sudoers (use visudo) |