import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; export interface AccountIamArgs { /** * The alias to be used for IAM. */ alias?: pulumi.Input; /** * The IAM password policy configuration. */ passwordPolicy?: pulumi.Input; } export interface AccountPasswordPolicyArgs { /** * Enable the creation of IAM Password Policy. Defaults to 'true'. */ enabled?: pulumi.Input; /** * The rules to be applied to the IAM Password Policy */ rules?: pulumi.Input; } export interface AccountPasswordPolicyRulesArgs { /** * Whether to allow users to change their own password. Defaults to 'true'. */ allowUsersToChangePassword?: pulumi.Input; /** * Whether users are prevented from setting a new password after their password has expired (i.e., require administrator reset). Defaults to 'true'. */ hardExpiry?: pulumi.Input; /** * The number of days that an user password is valid. Defaults to '90'. */ maxPasswordAge?: pulumi.Input; /** * Minimum length to require for user passwords. Defaults to '14'. */ minimumPasswordLength?: pulumi.Input; /** * The number of previous passwords that users are prevented from reusing. Defaults to '0'. */ passwordReusePrevention?: pulumi.Input; /** * Whether to require lowercase characters for user passwords. Defaults to 'true'. */ requireLowercaseCharacters?: pulumi.Input; /** * Whether to require numbers for user passwords. Defaults to 'true'. */ requireNumbers?: pulumi.Input; /** * Whether to require symbols for user passwords. Defaults to 'true'. */ requireSymbols?: pulumi.Input; /** * Whether to require uppercase characters for user passwords. Defaults to 'true'. */ requireUppercaseCharacters?: pulumi.Input; } export interface AuditLoggingCloudWatchArgs { /** * Enable storing audit logs in CloudWatch. Defaults to 'false'. */ enabled: pulumi.Input; /** * The data retention in days. Defaults to '1'. */ retentionDays?: pulumi.Input; } export interface IamTrustedAccountRoleArgs { name: pulumi.Input; } export interface IamTrustingAccountRoleArgs { name: pulumi.Input; policyNames: pulumi.Input[]>; } export interface LandingZoneAuditArgs { /** * Select the Organization account to be used to store the audit logs. */ accountName?: pulumi.Input; /** * Store the audit logs in CloudWatch to enable easy searching. */ cloudwatch?: pulumi.Input; /** * Enable audit logging. Defaults to 'true'. */ enabled?: pulumi.Input; /** * The data retention in days. Defaults to '7'. */ retentionDays?: pulumi.Input; } export interface LandingZoneAuditCloudWatchArgs { /** * Enable storing audit logs in CloudWatch. Defaults to 'false'. */ enabled: pulumi.Input; /** * The data retention in days. Defaults to '1'. */ retentionDays?: pulumi.Input; } export interface LandingZoneIamArgs { accountName?: pulumi.Input; roles?: pulumi.Input[]>; } export interface LandingZoneIamRoleArgs { name: pulumi.Input; policyNames: pulumi.Input[]>; } export interface OrganizationArgs { /** * The list of AWS Account to be configured in the Organization. */ accounts?: pulumi.Input[]>; /** * The list of enabled Organizations Policies in the organization. */ enabledPolicies?: pulumi.Input[]>; /** * The FeatureSet in the Organization.. */ featureSet?: pulumi.Input; /** * The organization ID to import the Organization in the stack. If not set a new AWS Organization will be created. Defaults to undefined. */ organizationId?: pulumi.Input; /** * The Organization policies to be applied. */ policies?: pulumi.Input; /** * The list of AWS Service Access Principals enabled in the organization. */ services?: pulumi.Input[]>; } export interface OrganizationAccountArgs { /** * The AWS Account ID to be used to import the Account in the Organization. If not set, a new AWS Account will be created. */ accountId?: pulumi.Input; /** * Admin role for the IAM Account. */ adminRoleName?: pulumi.Input; /** * The email associated to the IAM Account. */ email: pulumi.Input; /** * The configuration for IAM. */ iam: pulumi.Input; /** * The name of the IAM Account. */ name: pulumi.Input; ou?: pulumi.Input; /** * The parentId of the imported account. */ parentId?: pulumi.Input; } export interface OrganizationPoliciesArgs { /** * Deny IAM Account to leave the organization. Enabled by default. */ denyLeaveOrganization?: pulumi.Input; } export interface OrganizationPolicyArgs { /** * Enable the policy/ */ enabled?: pulumi.Input; /** * Import the policy with the given id */ policyId?: pulumi.Input; }