index.html 200 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007
  1. <!doctype html>
  2. <html lang="en" class="no-js">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1">
  6. <link rel="prev" href="../generator/fake/">
  7. <link rel="next" href="../controller-options/">
  8. <link rel="icon" href="../../assets/images/favicon.png">
  9. <meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.5.9">
  10. <title>API specification - External Secrets Operator</title>
  11. <link rel="stylesheet" href="../../assets/stylesheets/main.f2e4d321.min.css">
  12. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  13. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,700,700i%7CRoboto+Mono:400,400i,700,700i&display=fallback">
  14. <style>:root{--md-text-font:"Roboto";--md-code-font:"Roboto Mono"}</style>
  15. <script>__md_scope=new URL("../..",location),__md_hash=e=>[...e].reduce((e,_)=>(e<<5)-e+_.charCodeAt(0),0),__md_get=(e,_=localStorage,t=__md_scope)=>JSON.parse(_.getItem(t.pathname+"."+e)),__md_set=(e,_,t=localStorage,a=__md_scope)=>{try{t.setItem(a.pathname+"."+e,JSON.stringify(_))}catch(e){}}</script>
  16. <script id="__analytics">function __md_analytics(){function n(){dataLayer.push(arguments)}window.dataLayer=window.dataLayer||[],n("js",new Date),n("config","G-QP38TD8K7V"),document.addEventListener("DOMContentLoaded",function(){document.forms.search&&document.forms.search.query.addEventListener("blur",function(){this.value&&n("event","search",{search_term:this.value})}),document$.subscribe(function(){var a=document.forms.feedback;if(void 0!==a)for(var e of a.querySelectorAll("[type=submit]"))e.addEventListener("click",function(e){e.preventDefault();var t=document.location.pathname,e=this.getAttribute("data-md-value");n("event","feedback",{page:t,data:e}),a.firstElementChild.disabled=!0;e=a.querySelector(".md-feedback__note [data-md-value='"+e+"']");e&&(e.hidden=!1)}),a.hidden=!1}),location$.subscribe(function(e){n("config","G-QP38TD8K7V",{page_path:e.pathname})})});var e=document.createElement("script");e.async=!0,e.src="https://www.googletagmanager.com/gtag/js?id=G-QP38TD8K7V",document.getElementById("__analytics").insertAdjacentElement("afterEnd",e)}</script>
  17. <script>"undefined"!=typeof __md_analytics&&__md_analytics()</script>
  18. </head>
  19. <body dir="ltr">
  20. <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off">
  21. <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off">
  22. <label class="md-overlay" for="__drawer"></label>
  23. <div data-md-component="skip">
  24. </div>
  25. <div data-md-component="announce">
  26. </div>
  27. <div data-md-color-scheme="default" data-md-component="outdated" hidden>
  28. <aside class="md-banner md-banner--warning">
  29. <div class="md-banner__inner md-grid md-typeset">
  30. You're not viewing the latest version.
  31. <a href="../../..">
  32. <strong>Click here to go to latest.</strong>
  33. </a>
  34. </div>
  35. <script>var el=document.querySelector("[data-md-component=outdated]"),outdated=__md_get("__outdated",sessionStorage);!0===outdated&&el&&(el.hidden=!1)</script>
  36. </aside>
  37. </div>
  38. <header class="md-header" data-md-component="header">
  39. <nav class="md-header__inner md-grid" aria-label="Header">
  40. <a href="../.." title="External Secrets Operator" class="md-header__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  41. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a3 3 0 0 0 3-3 3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3m0 3.54C9.64 9.35 6.5 8 3 8v11c3.5 0 6.64 1.35 9 3.54 2.36-2.19 5.5-3.54 9-3.54V8c-3.5 0-6.64 1.35-9 3.54Z"/></svg>
  42. </a>
  43. <label class="md-header__button md-icon" for="__drawer">
  44. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18v2H3V6m0 5h18v2H3v-2m0 5h18v2H3v-2Z"/></svg>
  45. </label>
  46. <div class="md-header__title" data-md-component="header-title">
  47. <div class="md-header__ellipsis">
  48. <div class="md-header__topic">
  49. <span class="md-ellipsis">
  50. External Secrets Operator
  51. </span>
  52. </div>
  53. <div class="md-header__topic" data-md-component="header-topic">
  54. <span class="md-ellipsis">
  55. API specification
  56. </span>
  57. </div>
  58. </div>
  59. </div>
  60. <script>var media,input,key,value,palette=__md_get("__palette");if(palette&&palette.color){"(prefers-color-scheme)"===palette.color.media&&(media=matchMedia("(prefers-color-scheme: light)"),input=document.querySelector(media.matches?"[data-md-color-media='(prefers-color-scheme: light)']":"[data-md-color-media='(prefers-color-scheme: dark)']"),palette.color.media=input.getAttribute("data-md-color-media"),palette.color.scheme=input.getAttribute("data-md-color-scheme"),palette.color.primary=input.getAttribute("data-md-color-primary"),palette.color.accent=input.getAttribute("data-md-color-accent"));for([key,value]of Object.entries(palette.color))document.body.setAttribute("data-md-color-"+key,value)}</script>
  61. <label class="md-header__button md-icon" for="__search">
  62. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.516 6.516 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5Z"/></svg>
  63. </label>
  64. <div class="md-search" data-md-component="search" role="dialog">
  65. <label class="md-search__overlay" for="__search"></label>
  66. <div class="md-search__inner" role="search">
  67. <form class="md-search__form" name="search">
  68. <input type="text" class="md-search__input" name="query" aria-label="Search" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="search-query" required>
  69. <label class="md-search__icon md-icon" for="__search">
  70. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.516 6.516 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5Z"/></svg>
  71. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11h12Z"/></svg>
  72. </label>
  73. <nav class="md-search__options" aria-label="Search">
  74. <button type="reset" class="md-search__icon md-icon" title="Clear" aria-label="Clear" tabindex="-1">
  75. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41Z"/></svg>
  76. </button>
  77. </nav>
  78. </form>
  79. <div class="md-search__output">
  80. <div class="md-search__scrollwrap" data-md-scrollfix>
  81. <div class="md-search-result" data-md-component="search-result">
  82. <div class="md-search-result__meta">
  83. Initializing search
  84. </div>
  85. <ol class="md-search-result__list" role="presentation"></ol>
  86. </div>
  87. </div>
  88. </div>
  89. </div>
  90. </div>
  91. <div class="md-header__source">
  92. <a href="https://github.com/external-secrets/external-secrets" title="Go to repository" class="md-source" data-md-component="source">
  93. <div class="md-source__icon md-icon">
  94. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z"/></svg>
  95. </div>
  96. <div class="md-source__repository">
  97. External Secrets Operator
  98. </div>
  99. </a>
  100. </div>
  101. </nav>
  102. </header>
  103. <div class="md-container" data-md-component="container">
  104. <nav class="md-tabs" aria-label="Tabs" data-md-component="tabs">
  105. <div class="md-grid">
  106. <ul class="md-tabs__list">
  107. <li class="md-tabs__item">
  108. <a href="../.." class="md-tabs__link">
  109. Introduction
  110. </a>
  111. </li>
  112. <li class="md-tabs__item md-tabs__item--active">
  113. <a href="../components/" class="md-tabs__link">
  114. API
  115. </a>
  116. </li>
  117. <li class="md-tabs__item">
  118. <a href="../../guides/introduction/" class="md-tabs__link">
  119. Guides
  120. </a>
  121. </li>
  122. <li class="md-tabs__item">
  123. <a href="../../provider/aws-secrets-manager/" class="md-tabs__link">
  124. Provider
  125. </a>
  126. </li>
  127. <li class="md-tabs__item">
  128. <a href="../../examples/gitops-using-fluxcd/" class="md-tabs__link">
  129. Examples
  130. </a>
  131. </li>
  132. <li class="md-tabs__item">
  133. <a href="../../contributing/devguide/" class="md-tabs__link">
  134. Community
  135. </a>
  136. </li>
  137. </ul>
  138. </div>
  139. </nav>
  140. <main class="md-main" data-md-component="main">
  141. <div class="md-main__inner md-grid">
  142. <div class="md-sidebar md-sidebar--primary" data-md-component="sidebar" data-md-type="navigation" >
  143. <div class="md-sidebar__scrollwrap">
  144. <div class="md-sidebar__inner">
  145. <nav class="md-nav md-nav--primary md-nav--lifted" aria-label="Navigation" data-md-level="0">
  146. <label class="md-nav__title" for="__drawer">
  147. <a href="../.." title="External Secrets Operator" class="md-nav__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  148. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a3 3 0 0 0 3-3 3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3m0 3.54C9.64 9.35 6.5 8 3 8v11c3.5 0 6.64 1.35 9 3.54 2.36-2.19 5.5-3.54 9-3.54V8c-3.5 0-6.64 1.35-9 3.54Z"/></svg>
  149. </a>
  150. External Secrets Operator
  151. </label>
  152. <div class="md-nav__source">
  153. <a href="https://github.com/external-secrets/external-secrets" title="Go to repository" class="md-source" data-md-component="source">
  154. <div class="md-source__icon md-icon">
  155. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z"/></svg>
  156. </div>
  157. <div class="md-source__repository">
  158. External Secrets Operator
  159. </div>
  160. </a>
  161. </div>
  162. <ul class="md-nav__list" data-md-scrollfix>
  163. <li class="md-nav__item md-nav__item--nested">
  164. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_1" >
  165. <div class="md-nav__link md-nav__container">
  166. <a href="../.." class="md-nav__link ">
  167. <span class="md-ellipsis">
  168. Introduction
  169. </span>
  170. </a>
  171. <label class="md-nav__link " for="__nav_1" id="__nav_1_label" tabindex="0">
  172. <span class="md-nav__icon md-icon"></span>
  173. </label>
  174. </div>
  175. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_1_label" aria-expanded="false">
  176. <label class="md-nav__title" for="__nav_1">
  177. <span class="md-nav__icon md-icon"></span>
  178. Introduction
  179. </label>
  180. <ul class="md-nav__list" data-md-scrollfix>
  181. <li class="md-nav__item">
  182. <a href="../../introduction/overview/" class="md-nav__link">
  183. <span class="md-ellipsis">
  184. Overview
  185. </span>
  186. </a>
  187. </li>
  188. <li class="md-nav__item">
  189. <a href="../../introduction/getting-started/" class="md-nav__link">
  190. <span class="md-ellipsis">
  191. Getting started
  192. </span>
  193. </a>
  194. </li>
  195. <li class="md-nav__item">
  196. <a href="../../introduction/faq/" class="md-nav__link">
  197. <span class="md-ellipsis">
  198. FAQ
  199. </span>
  200. </a>
  201. </li>
  202. <li class="md-nav__item">
  203. <a href="../../introduction/stability-support/" class="md-nav__link">
  204. <span class="md-ellipsis">
  205. Stability and Support
  206. </span>
  207. </a>
  208. </li>
  209. <li class="md-nav__item">
  210. <a href="../../introduction/deprecation-policy/" class="md-nav__link">
  211. <span class="md-ellipsis">
  212. Deprecation Policy
  213. </span>
  214. </a>
  215. </li>
  216. </ul>
  217. </nav>
  218. </li>
  219. <li class="md-nav__item md-nav__item--active md-nav__item--section md-nav__item--nested">
  220. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2" checked>
  221. <label class="md-nav__link" for="__nav_2" id="__nav_2_label" tabindex="">
  222. <span class="md-ellipsis">
  223. API
  224. </span>
  225. <span class="md-nav__icon md-icon"></span>
  226. </label>
  227. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_2_label" aria-expanded="true">
  228. <label class="md-nav__title" for="__nav_2">
  229. <span class="md-nav__icon md-icon"></span>
  230. API
  231. </label>
  232. <ul class="md-nav__list" data-md-scrollfix>
  233. <li class="md-nav__item">
  234. <a href="../components/" class="md-nav__link">
  235. <span class="md-ellipsis">
  236. Components
  237. </span>
  238. </a>
  239. </li>
  240. <li class="md-nav__item md-nav__item--nested">
  241. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_2" >
  242. <label class="md-nav__link" for="__nav_2_2" id="__nav_2_2_label" tabindex="0">
  243. <span class="md-ellipsis">
  244. Core Resources
  245. </span>
  246. <span class="md-nav__icon md-icon"></span>
  247. </label>
  248. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_2_label" aria-expanded="false">
  249. <label class="md-nav__title" for="__nav_2_2">
  250. <span class="md-nav__icon md-icon"></span>
  251. Core Resources
  252. </label>
  253. <ul class="md-nav__list" data-md-scrollfix>
  254. <li class="md-nav__item">
  255. <a href="../externalsecret/" class="md-nav__link">
  256. <span class="md-ellipsis">
  257. ExternalSecret
  258. </span>
  259. </a>
  260. </li>
  261. <li class="md-nav__item">
  262. <a href="../secretstore/" class="md-nav__link">
  263. <span class="md-ellipsis">
  264. SecretStore
  265. </span>
  266. </a>
  267. </li>
  268. <li class="md-nav__item">
  269. <a href="../clustersecretstore/" class="md-nav__link">
  270. <span class="md-ellipsis">
  271. ClusterSecretStore
  272. </span>
  273. </a>
  274. </li>
  275. <li class="md-nav__item">
  276. <a href="../clusterexternalsecret/" class="md-nav__link">
  277. <span class="md-ellipsis">
  278. ClusterExternalSecret
  279. </span>
  280. </a>
  281. </li>
  282. <li class="md-nav__item">
  283. <a href="../pushsecret/" class="md-nav__link">
  284. <span class="md-ellipsis">
  285. PushSecret
  286. </span>
  287. </a>
  288. </li>
  289. </ul>
  290. </nav>
  291. </li>
  292. <li class="md-nav__item md-nav__item--nested">
  293. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_3" >
  294. <div class="md-nav__link md-nav__container">
  295. <a href="../generator/" class="md-nav__link ">
  296. <span class="md-ellipsis">
  297. Generators
  298. </span>
  299. </a>
  300. <label class="md-nav__link " for="__nav_2_3" id="__nav_2_3_label" tabindex="0">
  301. <span class="md-nav__icon md-icon"></span>
  302. </label>
  303. </div>
  304. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_3_label" aria-expanded="false">
  305. <label class="md-nav__title" for="__nav_2_3">
  306. <span class="md-nav__icon md-icon"></span>
  307. Generators
  308. </label>
  309. <ul class="md-nav__list" data-md-scrollfix>
  310. <li class="md-nav__item">
  311. <a href="../generator/acr/" class="md-nav__link">
  312. <span class="md-ellipsis">
  313. Azure Container Registry
  314. </span>
  315. </a>
  316. </li>
  317. <li class="md-nav__item">
  318. <a href="../generator/ecr/" class="md-nav__link">
  319. <span class="md-ellipsis">
  320. AWS Elastic Container Registry
  321. </span>
  322. </a>
  323. </li>
  324. <li class="md-nav__item">
  325. <a href="../generator/gcr/" class="md-nav__link">
  326. <span class="md-ellipsis">
  327. Google Container Registry
  328. </span>
  329. </a>
  330. </li>
  331. <li class="md-nav__item">
  332. <a href="../generator/vault/" class="md-nav__link">
  333. <span class="md-ellipsis">
  334. Vault Dynamic Secret
  335. </span>
  336. </a>
  337. </li>
  338. <li class="md-nav__item">
  339. <a href="../generator/password/" class="md-nav__link">
  340. <span class="md-ellipsis">
  341. Password
  342. </span>
  343. </a>
  344. </li>
  345. <li class="md-nav__item">
  346. <a href="../generator/fake/" class="md-nav__link">
  347. <span class="md-ellipsis">
  348. Fake
  349. </span>
  350. </a>
  351. </li>
  352. </ul>
  353. </nav>
  354. </li>
  355. <li class="md-nav__item md-nav__item--active md-nav__item--nested">
  356. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4" checked>
  357. <label class="md-nav__link" for="__nav_2_4" id="__nav_2_4_label" tabindex="0">
  358. <span class="md-ellipsis">
  359. Reference Docs
  360. </span>
  361. <span class="md-nav__icon md-icon"></span>
  362. </label>
  363. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_4_label" aria-expanded="true">
  364. <label class="md-nav__title" for="__nav_2_4">
  365. <span class="md-nav__icon md-icon"></span>
  366. Reference Docs
  367. </label>
  368. <ul class="md-nav__list" data-md-scrollfix>
  369. <li class="md-nav__item md-nav__item--active">
  370. <input class="md-nav__toggle md-toggle" type="checkbox" id="__toc">
  371. <a href="./" class="md-nav__link md-nav__link--active">
  372. <span class="md-ellipsis">
  373. API specification
  374. </span>
  375. </a>
  376. </li>
  377. <li class="md-nav__item">
  378. <a href="../controller-options/" class="md-nav__link">
  379. <span class="md-ellipsis">
  380. Controller Options
  381. </span>
  382. </a>
  383. </li>
  384. <li class="md-nav__item">
  385. <a href="../metrics/" class="md-nav__link">
  386. <span class="md-ellipsis">
  387. Metrics
  388. </span>
  389. </a>
  390. </li>
  391. </ul>
  392. </nav>
  393. </li>
  394. </ul>
  395. </nav>
  396. </li>
  397. <li class="md-nav__item md-nav__item--nested">
  398. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3" >
  399. <label class="md-nav__link" for="__nav_3" id="__nav_3_label" tabindex="0">
  400. <span class="md-ellipsis">
  401. Guides
  402. </span>
  403. <span class="md-nav__icon md-icon"></span>
  404. </label>
  405. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_3_label" aria-expanded="false">
  406. <label class="md-nav__title" for="__nav_3">
  407. <span class="md-nav__icon md-icon"></span>
  408. Guides
  409. </label>
  410. <ul class="md-nav__list" data-md-scrollfix>
  411. <li class="md-nav__item">
  412. <a href="../../guides/introduction/" class="md-nav__link">
  413. <span class="md-ellipsis">
  414. Introduction
  415. </span>
  416. </a>
  417. </li>
  418. <li class="md-nav__item md-nav__item--nested">
  419. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2" >
  420. <label class="md-nav__link" for="__nav_3_2" id="__nav_3_2_label" tabindex="0">
  421. <span class="md-ellipsis">
  422. External Secrets
  423. </span>
  424. <span class="md-nav__icon md-icon"></span>
  425. </label>
  426. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_2_label" aria-expanded="false">
  427. <label class="md-nav__title" for="__nav_3_2">
  428. <span class="md-nav__icon md-icon"></span>
  429. External Secrets
  430. </label>
  431. <ul class="md-nav__list" data-md-scrollfix>
  432. <li class="md-nav__item">
  433. <a href="../../guides/all-keys-one-secret/" class="md-nav__link">
  434. <span class="md-ellipsis">
  435. Extract structured data
  436. </span>
  437. </a>
  438. </li>
  439. <li class="md-nav__item">
  440. <a href="../../guides/getallsecrets/" class="md-nav__link">
  441. <span class="md-ellipsis">
  442. Find Secrets by Name or Metadata
  443. </span>
  444. </a>
  445. </li>
  446. <li class="md-nav__item">
  447. <a href="../../guides/datafrom-rewrite/" class="md-nav__link">
  448. <span class="md-ellipsis">
  449. Rewriting Keys
  450. </span>
  451. </a>
  452. </li>
  453. <li class="md-nav__item md-nav__item--nested">
  454. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2_4" >
  455. <label class="md-nav__link" for="__nav_3_2_4" id="__nav_3_2_4_label" tabindex="0">
  456. <span class="md-ellipsis">
  457. Advanced Templating
  458. </span>
  459. <span class="md-nav__icon md-icon"></span>
  460. </label>
  461. <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_3_2_4_label" aria-expanded="false">
  462. <label class="md-nav__title" for="__nav_3_2_4">
  463. <span class="md-nav__icon md-icon"></span>
  464. Advanced Templating
  465. </label>
  466. <ul class="md-nav__list" data-md-scrollfix>
  467. <li class="md-nav__item">
  468. <a href="../../guides/templating/" class="md-nav__link">
  469. <span class="md-ellipsis">
  470. v2
  471. </span>
  472. </a>
  473. </li>
  474. <li class="md-nav__item">
  475. <a href="../../guides/templating-v1/" class="md-nav__link">
  476. <span class="md-ellipsis">
  477. v1
  478. </span>
  479. </a>
  480. </li>
  481. </ul>
  482. </nav>
  483. </li>
  484. <li class="md-nav__item">
  485. <a href="../../guides/common-k8s-secret-types/" class="md-nav__link">
  486. <span class="md-ellipsis">
  487. Kubernetes Secret Types
  488. </span>
  489. </a>
  490. </li>
  491. <li class="md-nav__item">
  492. <a href="../../guides/ownership-deletion-policy/" class="md-nav__link">
  493. <span class="md-ellipsis">
  494. Lifecycle: ownership & deletion
  495. </span>
  496. </a>
  497. </li>
  498. <li class="md-nav__item">
  499. <a href="../../guides/decoding-strategy/" class="md-nav__link">
  500. <span class="md-ellipsis">
  501. Decoding Strategies
  502. </span>
  503. </a>
  504. </li>
  505. <li class="md-nav__item">
  506. <a href="../../guides/controller-class/" class="md-nav__link">
  507. <span class="md-ellipsis">
  508. Controller Classes
  509. </span>
  510. </a>
  511. </li>
  512. </ul>
  513. </nav>
  514. </li>
  515. <li class="md-nav__item">
  516. <a href="../../guides/generator/" class="md-nav__link">
  517. <span class="md-ellipsis">
  518. Generators
  519. </span>
  520. </a>
  521. </li>
  522. <li class="md-nav__item">
  523. <a href="../../guides/pushsecrets/" class="md-nav__link">
  524. <span class="md-ellipsis">
  525. Push Secrets
  526. </span>
  527. </a>
  528. </li>
  529. <li class="md-nav__item md-nav__item--nested">
  530. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_5" >
  531. <label class="md-nav__link" for="__nav_3_5" id="__nav_3_5_label" tabindex="0">
  532. <span class="md-ellipsis">
  533. Operations
  534. </span>
  535. <span class="md-nav__icon md-icon"></span>
  536. </label>
  537. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_5_label" aria-expanded="false">
  538. <label class="md-nav__title" for="__nav_3_5">
  539. <span class="md-nav__icon md-icon"></span>
  540. Operations
  541. </label>
  542. <ul class="md-nav__list" data-md-scrollfix>
  543. <li class="md-nav__item">
  544. <a href="../../guides/multi-tenancy/" class="md-nav__link">
  545. <span class="md-ellipsis">
  546. Multi Tenancy
  547. </span>
  548. </a>
  549. </li>
  550. <li class="md-nav__item">
  551. <a href="../../guides/security-best-practices/" class="md-nav__link">
  552. <span class="md-ellipsis">
  553. Security Best Practices
  554. </span>
  555. </a>
  556. </li>
  557. <li class="md-nav__item">
  558. <a href="../../guides/threat-model/" class="md-nav__link">
  559. <span class="md-ellipsis">
  560. Threat Model
  561. </span>
  562. </a>
  563. </li>
  564. <li class="md-nav__item">
  565. <a href="../../guides/v1beta1/" class="md-nav__link">
  566. <span class="md-ellipsis">
  567. Upgrading to v1beta1
  568. </span>
  569. </a>
  570. </li>
  571. <li class="md-nav__item">
  572. <a href="../../guides/using-latest-image/" class="md-nav__link">
  573. <span class="md-ellipsis">
  574. Using Latest Image
  575. </span>
  576. </a>
  577. </li>
  578. <li class="md-nav__item">
  579. <a href="../../guides/disable-cluster-features/" class="md-nav__link">
  580. <span class="md-ellipsis">
  581. Disable Cluster Features
  582. </span>
  583. </a>
  584. </li>
  585. </ul>
  586. </nav>
  587. </li>
  588. </ul>
  589. </nav>
  590. </li>
  591. <li class="md-nav__item md-nav__item--nested">
  592. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_4" >
  593. <label class="md-nav__link" for="__nav_4" id="__nav_4_label" tabindex="0">
  594. <span class="md-ellipsis">
  595. Provider
  596. </span>
  597. <span class="md-nav__icon md-icon"></span>
  598. </label>
  599. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_4_label" aria-expanded="false">
  600. <label class="md-nav__title" for="__nav_4">
  601. <span class="md-nav__icon md-icon"></span>
  602. Provider
  603. </label>
  604. <ul class="md-nav__list" data-md-scrollfix>
  605. <li class="md-nav__item">
  606. <a href="../../provider/aws-secrets-manager/" class="md-nav__link">
  607. <span class="md-ellipsis">
  608. AWS Secrets Manager
  609. </span>
  610. </a>
  611. </li>
  612. <li class="md-nav__item">
  613. <a href="../../provider/aws-parameter-store/" class="md-nav__link">
  614. <span class="md-ellipsis">
  615. AWS Parameter Store
  616. </span>
  617. </a>
  618. </li>
  619. <li class="md-nav__item">
  620. <a href="../../provider/azure-key-vault/" class="md-nav__link">
  621. <span class="md-ellipsis">
  622. Azure Key Vault
  623. </span>
  624. </a>
  625. </li>
  626. <li class="md-nav__item">
  627. <a href="../../provider/chef/" class="md-nav__link">
  628. <span class="md-ellipsis">
  629. Chef
  630. </span>
  631. </a>
  632. </li>
  633. <li class="md-nav__item">
  634. <a href="../../provider/conjur/" class="md-nav__link">
  635. <span class="md-ellipsis">
  636. CyberArk Conjur
  637. </span>
  638. </a>
  639. </li>
  640. <li class="md-nav__item">
  641. <a href="../../provider/google-secrets-manager/" class="md-nav__link">
  642. <span class="md-ellipsis">
  643. Google Cloud Secret Manager
  644. </span>
  645. </a>
  646. </li>
  647. <li class="md-nav__item">
  648. <a href="../../provider/hashicorp-vault/" class="md-nav__link">
  649. <span class="md-ellipsis">
  650. HashiCorp Vault
  651. </span>
  652. </a>
  653. </li>
  654. <li class="md-nav__item">
  655. <a href="../../provider/kubernetes/" class="md-nav__link">
  656. <span class="md-ellipsis">
  657. Kubernetes
  658. </span>
  659. </a>
  660. </li>
  661. <li class="md-nav__item">
  662. <a href="../../provider/ibm-secrets-manager/" class="md-nav__link">
  663. <span class="md-ellipsis">
  664. IBM Secrets Manager
  665. </span>
  666. </a>
  667. </li>
  668. <li class="md-nav__item">
  669. <a href="../../provider/akeyless/" class="md-nav__link">
  670. <span class="md-ellipsis">
  671. Akeyless
  672. </span>
  673. </a>
  674. </li>
  675. <li class="md-nav__item">
  676. <a href="../../provider/yandex-certificate-manager/" class="md-nav__link">
  677. <span class="md-ellipsis">
  678. Yandex Certificate Manager
  679. </span>
  680. </a>
  681. </li>
  682. <li class="md-nav__item">
  683. <a href="../../provider/yandex-lockbox/" class="md-nav__link">
  684. <span class="md-ellipsis">
  685. Yandex Lockbox
  686. </span>
  687. </a>
  688. </li>
  689. <li class="md-nav__item">
  690. <a href="../../provider/alibaba/" class="md-nav__link">
  691. <span class="md-ellipsis">
  692. Alibaba Cloud
  693. </span>
  694. </a>
  695. </li>
  696. <li class="md-nav__item">
  697. <a href="../../provider/gitlab-variables/" class="md-nav__link">
  698. <span class="md-ellipsis">
  699. GitLab Variables
  700. </span>
  701. </a>
  702. </li>
  703. <li class="md-nav__item">
  704. <a href="../../provider/oracle-vault/" class="md-nav__link">
  705. <span class="md-ellipsis">
  706. Oracle Vault
  707. </span>
  708. </a>
  709. </li>
  710. <li class="md-nav__item">
  711. <a href="../../provider/1password-automation/" class="md-nav__link">
  712. <span class="md-ellipsis">
  713. 1Password Secrets Automation
  714. </span>
  715. </a>
  716. </li>
  717. <li class="md-nav__item">
  718. <a href="../../provider/webhook/" class="md-nav__link">
  719. <span class="md-ellipsis">
  720. Webhook
  721. </span>
  722. </a>
  723. </li>
  724. <li class="md-nav__item">
  725. <a href="../../provider/fake/" class="md-nav__link">
  726. <span class="md-ellipsis">
  727. Fake
  728. </span>
  729. </a>
  730. </li>
  731. <li class="md-nav__item">
  732. <a href="../../provider/senhasegura-dsm/" class="md-nav__link">
  733. <span class="md-ellipsis">
  734. senhasegura DevOps Secrets Management (DSM)
  735. </span>
  736. </a>
  737. </li>
  738. <li class="md-nav__item">
  739. <a href="../../provider/doppler/" class="md-nav__link">
  740. <span class="md-ellipsis">
  741. Doppler
  742. </span>
  743. </a>
  744. </li>
  745. <li class="md-nav__item">
  746. <a href="../../provider/keeper-security/" class="md-nav__link">
  747. <span class="md-ellipsis">
  748. Keeper Security
  749. </span>
  750. </a>
  751. </li>
  752. <li class="md-nav__item">
  753. <a href="../../provider/cloak/" class="md-nav__link">
  754. <span class="md-ellipsis">
  755. Cloak End 2 End Encrypted Secrets
  756. </span>
  757. </a>
  758. </li>
  759. <li class="md-nav__item">
  760. <a href="../../provider/scaleway/" class="md-nav__link">
  761. <span class="md-ellipsis">
  762. Scaleway
  763. </span>
  764. </a>
  765. </li>
  766. <li class="md-nav__item">
  767. <a href="../../provider/delinea/" class="md-nav__link">
  768. <span class="md-ellipsis">
  769. Delinea
  770. </span>
  771. </a>
  772. </li>
  773. <li class="md-nav__item">
  774. <a href="../../provider/pulumi/" class="md-nav__link">
  775. <span class="md-ellipsis">
  776. Pulumi ESC
  777. </span>
  778. </a>
  779. </li>
  780. </ul>
  781. </nav>
  782. </li>
  783. <li class="md-nav__item md-nav__item--nested">
  784. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_5" >
  785. <label class="md-nav__link" for="__nav_5" id="__nav_5_label" tabindex="0">
  786. <span class="md-ellipsis">
  787. Examples
  788. </span>
  789. <span class="md-nav__icon md-icon"></span>
  790. </label>
  791. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_5_label" aria-expanded="false">
  792. <label class="md-nav__title" for="__nav_5">
  793. <span class="md-nav__icon md-icon"></span>
  794. Examples
  795. </label>
  796. <ul class="md-nav__list" data-md-scrollfix>
  797. <li class="md-nav__item">
  798. <a href="../../examples/gitops-using-fluxcd/" class="md-nav__link">
  799. <span class="md-ellipsis">
  800. FluxCD
  801. </span>
  802. </a>
  803. </li>
  804. <li class="md-nav__item">
  805. <a href="../../examples/anchore-engine-credentials/" class="md-nav__link">
  806. <span class="md-ellipsis">
  807. Anchore Engine
  808. </span>
  809. </a>
  810. </li>
  811. <li class="md-nav__item">
  812. <a href="../../examples/jenkins-kubernetes-credentials/" class="md-nav__link">
  813. <span class="md-ellipsis">
  814. Jenkins
  815. </span>
  816. </a>
  817. </li>
  818. <li class="md-nav__item">
  819. <a href="../../examples/bitwarden/" class="md-nav__link">
  820. <span class="md-ellipsis">
  821. BitWarden
  822. </span>
  823. </a>
  824. </li>
  825. </ul>
  826. </nav>
  827. </li>
  828. <li class="md-nav__item md-nav__item--nested">
  829. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6" >
  830. <label class="md-nav__link" for="__nav_6" id="__nav_6_label" tabindex="0">
  831. <span class="md-ellipsis">
  832. Community
  833. </span>
  834. <span class="md-nav__icon md-icon"></span>
  835. </label>
  836. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_6_label" aria-expanded="false">
  837. <label class="md-nav__title" for="__nav_6">
  838. <span class="md-nav__icon md-icon"></span>
  839. Community
  840. </label>
  841. <ul class="md-nav__list" data-md-scrollfix>
  842. <li class="md-nav__item md-nav__item--nested">
  843. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_1" >
  844. <label class="md-nav__link" for="__nav_6_1" id="__nav_6_1_label" tabindex="0">
  845. <span class="md-ellipsis">
  846. Contributing
  847. </span>
  848. <span class="md-nav__icon md-icon"></span>
  849. </label>
  850. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_1_label" aria-expanded="false">
  851. <label class="md-nav__title" for="__nav_6_1">
  852. <span class="md-nav__icon md-icon"></span>
  853. Contributing
  854. </label>
  855. <ul class="md-nav__list" data-md-scrollfix>
  856. <li class="md-nav__item">
  857. <a href="../../contributing/devguide/" class="md-nav__link">
  858. <span class="md-ellipsis">
  859. Developer guide
  860. </span>
  861. </a>
  862. </li>
  863. <li class="md-nav__item">
  864. <a href="../../contributing/process/" class="md-nav__link">
  865. <span class="md-ellipsis">
  866. Contributing Process
  867. </span>
  868. </a>
  869. </li>
  870. <li class="md-nav__item">
  871. <a href="../../contributing/release/" class="md-nav__link">
  872. <span class="md-ellipsis">
  873. Release Process
  874. </span>
  875. </a>
  876. </li>
  877. <li class="md-nav__item">
  878. <a href="../../contributing/coc/" class="md-nav__link">
  879. <span class="md-ellipsis">
  880. Code of Conduct
  881. </span>
  882. </a>
  883. </li>
  884. <li class="md-nav__item">
  885. <a href="../../contributing/roadmap/" class="md-nav__link">
  886. <span class="md-ellipsis">
  887. Roadmap
  888. </span>
  889. </a>
  890. </li>
  891. </ul>
  892. </nav>
  893. </li>
  894. <li class="md-nav__item md-nav__item--nested">
  895. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_2" >
  896. <label class="md-nav__link" for="__nav_6_2" id="__nav_6_2_label" tabindex="0">
  897. <span class="md-ellipsis">
  898. External Resources
  899. </span>
  900. <span class="md-nav__icon md-icon"></span>
  901. </label>
  902. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_2_label" aria-expanded="false">
  903. <label class="md-nav__title" for="__nav_6_2">
  904. <span class="md-nav__icon md-icon"></span>
  905. External Resources
  906. </label>
  907. <ul class="md-nav__list" data-md-scrollfix>
  908. <li class="md-nav__item">
  909. <a href="../../eso-talks/" class="md-nav__link">
  910. <span class="md-ellipsis">
  911. Talks
  912. </span>
  913. </a>
  914. </li>
  915. <li class="md-nav__item">
  916. <a href="../../eso-demos/" class="md-nav__link">
  917. <span class="md-ellipsis">
  918. Demos
  919. </span>
  920. </a>
  921. </li>
  922. <li class="md-nav__item">
  923. <a href="../../eso-blogs/" class="md-nav__link">
  924. <span class="md-ellipsis">
  925. Blogs
  926. </span>
  927. </a>
  928. </li>
  929. </ul>
  930. </nav>
  931. </li>
  932. </ul>
  933. </nav>
  934. </li>
  935. </ul>
  936. </nav>
  937. </div>
  938. </div>
  939. </div>
  940. <div class="md-sidebar md-sidebar--secondary" data-md-component="sidebar" data-md-type="toc" >
  941. <div class="md-sidebar__scrollwrap">
  942. <div class="md-sidebar__inner">
  943. <nav class="md-nav md-nav--secondary" aria-label="Table of contents">
  944. </nav>
  945. </div>
  946. </div>
  947. </div>
  948. <div class="md-content" data-md-component="content">
  949. <article class="md-content__inner md-typeset">
  950. <h1>API specification</h1>
  951. <p>Packages:</p>
  952. <ul>
  953. <li>
  954. <a href="#external-secrets.io%2fv1beta1">external-secrets.io/v1beta1</a>
  955. </li>
  956. </ul>
  957. <h2 id="external-secrets.io/v1beta1">external-secrets.io/v1beta1</h2>
  958. <p>
  959. <p>Package v1beta1 contains resources for external-secrets</p>
  960. </p>
  961. <p>Resource Types:</p>
  962. <ul></ul>
  963. <h3 id="external-secrets.io/v1beta1.AWSAuth">AWSAuth
  964. </h3>
  965. <p>
  966. (<em>Appears on:</em>
  967. <a href="#external-secrets.io/v1beta1.AWSProvider">AWSProvider</a>)
  968. </p>
  969. <p>
  970. <p>AWSAuth tells the controller how to do authentication with aws.
  971. Only one of secretRef or jwt can be specified.
  972. if none is specified the controller will load credentials using the aws sdk defaults.</p>
  973. </p>
  974. <table>
  975. <thead>
  976. <tr>
  977. <th>Field</th>
  978. <th>Description</th>
  979. </tr>
  980. </thead>
  981. <tbody>
  982. <tr>
  983. <td>
  984. <code>secretRef</code></br>
  985. <em>
  986. <a href="#external-secrets.io/v1beta1.AWSAuthSecretRef">
  987. AWSAuthSecretRef
  988. </a>
  989. </em>
  990. </td>
  991. <td>
  992. <em>(Optional)</em>
  993. </td>
  994. </tr>
  995. <tr>
  996. <td>
  997. <code>jwt</code></br>
  998. <em>
  999. <a href="#external-secrets.io/v1beta1.AWSJWTAuth">
  1000. AWSJWTAuth
  1001. </a>
  1002. </em>
  1003. </td>
  1004. <td>
  1005. <em>(Optional)</em>
  1006. </td>
  1007. </tr>
  1008. </tbody>
  1009. </table>
  1010. <h3 id="external-secrets.io/v1beta1.AWSAuthSecretRef">AWSAuthSecretRef
  1011. </h3>
  1012. <p>
  1013. (<em>Appears on:</em>
  1014. <a href="#external-secrets.io/v1beta1.AWSAuth">AWSAuth</a>)
  1015. </p>
  1016. <p>
  1017. <p>AWSAuthSecretRef holds secret references for AWS credentials
  1018. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</p>
  1019. </p>
  1020. <table>
  1021. <thead>
  1022. <tr>
  1023. <th>Field</th>
  1024. <th>Description</th>
  1025. </tr>
  1026. </thead>
  1027. <tbody>
  1028. <tr>
  1029. <td>
  1030. <code>accessKeyIDSecretRef</code></br>
  1031. <em>
  1032. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1033. External Secrets meta/v1.SecretKeySelector
  1034. </a>
  1035. </em>
  1036. </td>
  1037. <td>
  1038. <p>The AccessKeyID is used for authentication</p>
  1039. </td>
  1040. </tr>
  1041. <tr>
  1042. <td>
  1043. <code>secretAccessKeySecretRef</code></br>
  1044. <em>
  1045. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1046. External Secrets meta/v1.SecretKeySelector
  1047. </a>
  1048. </em>
  1049. </td>
  1050. <td>
  1051. <p>The SecretAccessKey is used for authentication</p>
  1052. </td>
  1053. </tr>
  1054. <tr>
  1055. <td>
  1056. <code>sessionTokenSecretRef</code></br>
  1057. <em>
  1058. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1059. External Secrets meta/v1.SecretKeySelector
  1060. </a>
  1061. </em>
  1062. </td>
  1063. <td>
  1064. <p>The SessionToken used for authentication
  1065. This must be defined if AccessKeyID and SecretAccessKey are temporary credentials
  1066. see: <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html">https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html</a></p>
  1067. </td>
  1068. </tr>
  1069. </tbody>
  1070. </table>
  1071. <h3 id="external-secrets.io/v1beta1.AWSJWTAuth">AWSJWTAuth
  1072. </h3>
  1073. <p>
  1074. (<em>Appears on:</em>
  1075. <a href="#external-secrets.io/v1beta1.AWSAuth">AWSAuth</a>)
  1076. </p>
  1077. <p>
  1078. <p>Authenticate against AWS using service account tokens.</p>
  1079. </p>
  1080. <table>
  1081. <thead>
  1082. <tr>
  1083. <th>Field</th>
  1084. <th>Description</th>
  1085. </tr>
  1086. </thead>
  1087. <tbody>
  1088. <tr>
  1089. <td>
  1090. <code>serviceAccountRef</code></br>
  1091. <em>
  1092. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  1093. External Secrets meta/v1.ServiceAccountSelector
  1094. </a>
  1095. </em>
  1096. </td>
  1097. <td>
  1098. </td>
  1099. </tr>
  1100. </tbody>
  1101. </table>
  1102. <h3 id="external-secrets.io/v1beta1.AWSProvider">AWSProvider
  1103. </h3>
  1104. <p>
  1105. (<em>Appears on:</em>
  1106. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  1107. </p>
  1108. <p>
  1109. <p>AWSProvider configures a store to sync secrets with AWS.</p>
  1110. </p>
  1111. <table>
  1112. <thead>
  1113. <tr>
  1114. <th>Field</th>
  1115. <th>Description</th>
  1116. </tr>
  1117. </thead>
  1118. <tbody>
  1119. <tr>
  1120. <td>
  1121. <code>service</code></br>
  1122. <em>
  1123. <a href="#external-secrets.io/v1beta1.AWSServiceType">
  1124. AWSServiceType
  1125. </a>
  1126. </em>
  1127. </td>
  1128. <td>
  1129. <p>Service defines which service should be used to fetch the secrets</p>
  1130. </td>
  1131. </tr>
  1132. <tr>
  1133. <td>
  1134. <code>auth</code></br>
  1135. <em>
  1136. <a href="#external-secrets.io/v1beta1.AWSAuth">
  1137. AWSAuth
  1138. </a>
  1139. </em>
  1140. </td>
  1141. <td>
  1142. <em>(Optional)</em>
  1143. <p>Auth defines the information necessary to authenticate against AWS
  1144. if not set aws sdk will infer credentials from your environment
  1145. see: <a href="https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials">https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials</a></p>
  1146. </td>
  1147. </tr>
  1148. <tr>
  1149. <td>
  1150. <code>role</code></br>
  1151. <em>
  1152. string
  1153. </em>
  1154. </td>
  1155. <td>
  1156. <em>(Optional)</em>
  1157. <p>Role is a Role ARN which the provider will assume</p>
  1158. </td>
  1159. </tr>
  1160. <tr>
  1161. <td>
  1162. <code>region</code></br>
  1163. <em>
  1164. string
  1165. </em>
  1166. </td>
  1167. <td>
  1168. <p>AWS Region to be used for the provider</p>
  1169. </td>
  1170. </tr>
  1171. <tr>
  1172. <td>
  1173. <code>additionalRoles</code></br>
  1174. <em>
  1175. []string
  1176. </em>
  1177. </td>
  1178. <td>
  1179. <em>(Optional)</em>
  1180. <p>AdditionalRoles is a chained list of Role ARNs which the provider will sequentially assume before assuming the Role</p>
  1181. </td>
  1182. </tr>
  1183. <tr>
  1184. <td>
  1185. <code>externalID</code></br>
  1186. <em>
  1187. string
  1188. </em>
  1189. </td>
  1190. <td>
  1191. <p>AWS External ID set on assumed IAM roles</p>
  1192. </td>
  1193. </tr>
  1194. <tr>
  1195. <td>
  1196. <code>sessionTags</code></br>
  1197. <em>
  1198. <a href="#external-secrets.io/v1beta1.*github.com/external-secrets/external-secrets/apis/externalsecrets/v1beta1.Tag">
  1199. []*github.com/external-secrets/external-secrets/apis/externalsecrets/v1beta1.Tag
  1200. </a>
  1201. </em>
  1202. </td>
  1203. <td>
  1204. <em>(Optional)</em>
  1205. <p>AWS STS assume role session tags</p>
  1206. </td>
  1207. </tr>
  1208. <tr>
  1209. <td>
  1210. <code>secretsManager</code></br>
  1211. <em>
  1212. <a href="#external-secrets.io/v1beta1.SecretsManager">
  1213. SecretsManager
  1214. </a>
  1215. </em>
  1216. </td>
  1217. <td>
  1218. <em>(Optional)</em>
  1219. <p>SecretsManager defines how the provider behaves when interacting with AWS SecretsManager</p>
  1220. </td>
  1221. </tr>
  1222. <tr>
  1223. <td>
  1224. <code>transitiveTagKeys</code></br>
  1225. <em>
  1226. []*string
  1227. </em>
  1228. </td>
  1229. <td>
  1230. <em>(Optional)</em>
  1231. <p>AWS STS assume role transitive session tags. Required when multiple rules are used with the provider</p>
  1232. </td>
  1233. </tr>
  1234. </tbody>
  1235. </table>
  1236. <h3 id="external-secrets.io/v1beta1.AWSServiceType">AWSServiceType
  1237. (<code>string</code> alias)</p></h3>
  1238. <p>
  1239. (<em>Appears on:</em>
  1240. <a href="#external-secrets.io/v1beta1.AWSProvider">AWSProvider</a>)
  1241. </p>
  1242. <p>
  1243. <p>AWSServiceType is a enum that defines the service/API that is used to fetch the secrets.</p>
  1244. </p>
  1245. <table>
  1246. <thead>
  1247. <tr>
  1248. <th>Value</th>
  1249. <th>Description</th>
  1250. </tr>
  1251. </thead>
  1252. <tbody><tr><td><p>&#34;ParameterStore&#34;</p></td>
  1253. <td><p>AWSServiceParameterStore is the AWS SystemsManager ParameterStore service.
  1254. see: <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html">https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html</a></p>
  1255. </td>
  1256. </tr><tr><td><p>&#34;SecretsManager&#34;</p></td>
  1257. <td><p>AWSServiceSecretsManager is the AWS SecretsManager service.
  1258. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html">https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html</a></p>
  1259. </td>
  1260. </tr></tbody>
  1261. </table>
  1262. <h3 id="external-secrets.io/v1beta1.AkeylessAuth">AkeylessAuth
  1263. </h3>
  1264. <p>
  1265. (<em>Appears on:</em>
  1266. <a href="#external-secrets.io/v1beta1.AkeylessProvider">AkeylessProvider</a>)
  1267. </p>
  1268. <p>
  1269. </p>
  1270. <table>
  1271. <thead>
  1272. <tr>
  1273. <th>Field</th>
  1274. <th>Description</th>
  1275. </tr>
  1276. </thead>
  1277. <tbody>
  1278. <tr>
  1279. <td>
  1280. <code>secretRef</code></br>
  1281. <em>
  1282. <a href="#external-secrets.io/v1beta1.AkeylessAuthSecretRef">
  1283. AkeylessAuthSecretRef
  1284. </a>
  1285. </em>
  1286. </td>
  1287. <td>
  1288. <em>(Optional)</em>
  1289. <p>Reference to a Secret that contains the details
  1290. to authenticate with Akeyless.</p>
  1291. </td>
  1292. </tr>
  1293. <tr>
  1294. <td>
  1295. <code>kubernetesAuth</code></br>
  1296. <em>
  1297. <a href="#external-secrets.io/v1beta1.AkeylessKubernetesAuth">
  1298. AkeylessKubernetesAuth
  1299. </a>
  1300. </em>
  1301. </td>
  1302. <td>
  1303. <em>(Optional)</em>
  1304. <p>Kubernetes authenticates with Akeyless by passing the ServiceAccount
  1305. token stored in the named Secret resource.</p>
  1306. </td>
  1307. </tr>
  1308. </tbody>
  1309. </table>
  1310. <h3 id="external-secrets.io/v1beta1.AkeylessAuthSecretRef">AkeylessAuthSecretRef
  1311. </h3>
  1312. <p>
  1313. (<em>Appears on:</em>
  1314. <a href="#external-secrets.io/v1beta1.AkeylessAuth">AkeylessAuth</a>)
  1315. </p>
  1316. <p>
  1317. <p>AkeylessAuthSecretRef
  1318. AKEYLESS_ACCESS_TYPE_PARAM: AZURE_OBJ_ID OR GCP_AUDIENCE OR ACCESS_KEY OR KUB_CONFIG_NAME.</p>
  1319. </p>
  1320. <table>
  1321. <thead>
  1322. <tr>
  1323. <th>Field</th>
  1324. <th>Description</th>
  1325. </tr>
  1326. </thead>
  1327. <tbody>
  1328. <tr>
  1329. <td>
  1330. <code>accessID</code></br>
  1331. <em>
  1332. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1333. External Secrets meta/v1.SecretKeySelector
  1334. </a>
  1335. </em>
  1336. </td>
  1337. <td>
  1338. <p>The SecretAccessID is used for authentication</p>
  1339. </td>
  1340. </tr>
  1341. <tr>
  1342. <td>
  1343. <code>accessType</code></br>
  1344. <em>
  1345. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1346. External Secrets meta/v1.SecretKeySelector
  1347. </a>
  1348. </em>
  1349. </td>
  1350. <td>
  1351. </td>
  1352. </tr>
  1353. <tr>
  1354. <td>
  1355. <code>accessTypeParam</code></br>
  1356. <em>
  1357. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1358. External Secrets meta/v1.SecretKeySelector
  1359. </a>
  1360. </em>
  1361. </td>
  1362. <td>
  1363. </td>
  1364. </tr>
  1365. </tbody>
  1366. </table>
  1367. <h3 id="external-secrets.io/v1beta1.AkeylessKubernetesAuth">AkeylessKubernetesAuth
  1368. </h3>
  1369. <p>
  1370. (<em>Appears on:</em>
  1371. <a href="#external-secrets.io/v1beta1.AkeylessAuth">AkeylessAuth</a>)
  1372. </p>
  1373. <p>
  1374. <p>Authenticate with Kubernetes ServiceAccount token stored.</p>
  1375. </p>
  1376. <table>
  1377. <thead>
  1378. <tr>
  1379. <th>Field</th>
  1380. <th>Description</th>
  1381. </tr>
  1382. </thead>
  1383. <tbody>
  1384. <tr>
  1385. <td>
  1386. <code>accessID</code></br>
  1387. <em>
  1388. string
  1389. </em>
  1390. </td>
  1391. <td>
  1392. <p>the Akeyless Kubernetes auth-method access-id</p>
  1393. </td>
  1394. </tr>
  1395. <tr>
  1396. <td>
  1397. <code>k8sConfName</code></br>
  1398. <em>
  1399. string
  1400. </em>
  1401. </td>
  1402. <td>
  1403. <p>Kubernetes-auth configuration name in Akeyless-Gateway</p>
  1404. </td>
  1405. </tr>
  1406. <tr>
  1407. <td>
  1408. <code>serviceAccountRef</code></br>
  1409. <em>
  1410. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  1411. External Secrets meta/v1.ServiceAccountSelector
  1412. </a>
  1413. </em>
  1414. </td>
  1415. <td>
  1416. <em>(Optional)</em>
  1417. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  1418. If the service account is specified, the service account secret token JWT will be used
  1419. for authenticating with Akeyless. If the service account selector is not supplied,
  1420. the secretRef will be used instead.</p>
  1421. </td>
  1422. </tr>
  1423. <tr>
  1424. <td>
  1425. <code>secretRef</code></br>
  1426. <em>
  1427. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1428. External Secrets meta/v1.SecretKeySelector
  1429. </a>
  1430. </em>
  1431. </td>
  1432. <td>
  1433. <em>(Optional)</em>
  1434. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  1435. for authenticating with Akeyless. If a name is specified without a key,
  1436. <code>token</code> is the default. If one is not specified, the one bound to
  1437. the controller will be used.</p>
  1438. </td>
  1439. </tr>
  1440. </tbody>
  1441. </table>
  1442. <h3 id="external-secrets.io/v1beta1.AkeylessProvider">AkeylessProvider
  1443. </h3>
  1444. <p>
  1445. (<em>Appears on:</em>
  1446. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  1447. </p>
  1448. <p>
  1449. <p>AkeylessProvider Configures an store to sync secrets using Akeyless KV.</p>
  1450. </p>
  1451. <table>
  1452. <thead>
  1453. <tr>
  1454. <th>Field</th>
  1455. <th>Description</th>
  1456. </tr>
  1457. </thead>
  1458. <tbody>
  1459. <tr>
  1460. <td>
  1461. <code>akeylessGWApiURL</code></br>
  1462. <em>
  1463. string
  1464. </em>
  1465. </td>
  1466. <td>
  1467. <p>Akeyless GW API Url from which the secrets to be fetched from.</p>
  1468. </td>
  1469. </tr>
  1470. <tr>
  1471. <td>
  1472. <code>authSecretRef</code></br>
  1473. <em>
  1474. <a href="#external-secrets.io/v1beta1.AkeylessAuth">
  1475. AkeylessAuth
  1476. </a>
  1477. </em>
  1478. </td>
  1479. <td>
  1480. <p>Auth configures how the operator authenticates with Akeyless.</p>
  1481. </td>
  1482. </tr>
  1483. <tr>
  1484. <td>
  1485. <code>caBundle</code></br>
  1486. <em>
  1487. []byte
  1488. </em>
  1489. </td>
  1490. <td>
  1491. <em>(Optional)</em>
  1492. <p>PEM/base64 encoded CA bundle used to validate Akeyless Gateway certificate. Only used
  1493. if the AkeylessGWApiURL URL is using HTTPS protocol. If not set the system root certificates
  1494. are used to validate the TLS connection.</p>
  1495. </td>
  1496. </tr>
  1497. <tr>
  1498. <td>
  1499. <code>caProvider</code></br>
  1500. <em>
  1501. <a href="#external-secrets.io/v1beta1.CAProvider">
  1502. CAProvider
  1503. </a>
  1504. </em>
  1505. </td>
  1506. <td>
  1507. <em>(Optional)</em>
  1508. <p>The provider for the CA bundle to use to validate Akeyless Gateway certificate.</p>
  1509. </td>
  1510. </tr>
  1511. </tbody>
  1512. </table>
  1513. <h3 id="external-secrets.io/v1beta1.AlibabaAuth">AlibabaAuth
  1514. </h3>
  1515. <p>
  1516. (<em>Appears on:</em>
  1517. <a href="#external-secrets.io/v1beta1.AlibabaProvider">AlibabaProvider</a>)
  1518. </p>
  1519. <p>
  1520. <p>AlibabaAuth contains a secretRef for credentials.</p>
  1521. </p>
  1522. <table>
  1523. <thead>
  1524. <tr>
  1525. <th>Field</th>
  1526. <th>Description</th>
  1527. </tr>
  1528. </thead>
  1529. <tbody>
  1530. <tr>
  1531. <td>
  1532. <code>secretRef</code></br>
  1533. <em>
  1534. <a href="#external-secrets.io/v1beta1.AlibabaAuthSecretRef">
  1535. AlibabaAuthSecretRef
  1536. </a>
  1537. </em>
  1538. </td>
  1539. <td>
  1540. <em>(Optional)</em>
  1541. </td>
  1542. </tr>
  1543. <tr>
  1544. <td>
  1545. <code>rrsa</code></br>
  1546. <em>
  1547. <a href="#external-secrets.io/v1beta1.AlibabaRRSAAuth">
  1548. AlibabaRRSAAuth
  1549. </a>
  1550. </em>
  1551. </td>
  1552. <td>
  1553. <em>(Optional)</em>
  1554. </td>
  1555. </tr>
  1556. </tbody>
  1557. </table>
  1558. <h3 id="external-secrets.io/v1beta1.AlibabaAuthSecretRef">AlibabaAuthSecretRef
  1559. </h3>
  1560. <p>
  1561. (<em>Appears on:</em>
  1562. <a href="#external-secrets.io/v1beta1.AlibabaAuth">AlibabaAuth</a>)
  1563. </p>
  1564. <p>
  1565. <p>AlibabaAuthSecretRef holds secret references for Alibaba credentials.</p>
  1566. </p>
  1567. <table>
  1568. <thead>
  1569. <tr>
  1570. <th>Field</th>
  1571. <th>Description</th>
  1572. </tr>
  1573. </thead>
  1574. <tbody>
  1575. <tr>
  1576. <td>
  1577. <code>accessKeyIDSecretRef</code></br>
  1578. <em>
  1579. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1580. External Secrets meta/v1.SecretKeySelector
  1581. </a>
  1582. </em>
  1583. </td>
  1584. <td>
  1585. <p>The AccessKeyID is used for authentication</p>
  1586. </td>
  1587. </tr>
  1588. <tr>
  1589. <td>
  1590. <code>accessKeySecretSecretRef</code></br>
  1591. <em>
  1592. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1593. External Secrets meta/v1.SecretKeySelector
  1594. </a>
  1595. </em>
  1596. </td>
  1597. <td>
  1598. <p>The AccessKeySecret is used for authentication</p>
  1599. </td>
  1600. </tr>
  1601. </tbody>
  1602. </table>
  1603. <h3 id="external-secrets.io/v1beta1.AlibabaProvider">AlibabaProvider
  1604. </h3>
  1605. <p>
  1606. (<em>Appears on:</em>
  1607. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  1608. </p>
  1609. <p>
  1610. <p>AlibabaProvider configures a store to sync secrets using the Alibaba Secret Manager provider.</p>
  1611. </p>
  1612. <table>
  1613. <thead>
  1614. <tr>
  1615. <th>Field</th>
  1616. <th>Description</th>
  1617. </tr>
  1618. </thead>
  1619. <tbody>
  1620. <tr>
  1621. <td>
  1622. <code>auth</code></br>
  1623. <em>
  1624. <a href="#external-secrets.io/v1beta1.AlibabaAuth">
  1625. AlibabaAuth
  1626. </a>
  1627. </em>
  1628. </td>
  1629. <td>
  1630. </td>
  1631. </tr>
  1632. <tr>
  1633. <td>
  1634. <code>regionID</code></br>
  1635. <em>
  1636. string
  1637. </em>
  1638. </td>
  1639. <td>
  1640. <p>Alibaba Region to be used for the provider</p>
  1641. </td>
  1642. </tr>
  1643. </tbody>
  1644. </table>
  1645. <h3 id="external-secrets.io/v1beta1.AlibabaRRSAAuth">AlibabaRRSAAuth
  1646. </h3>
  1647. <p>
  1648. (<em>Appears on:</em>
  1649. <a href="#external-secrets.io/v1beta1.AlibabaAuth">AlibabaAuth</a>)
  1650. </p>
  1651. <p>
  1652. <p>Authenticate against Alibaba using RRSA.</p>
  1653. </p>
  1654. <table>
  1655. <thead>
  1656. <tr>
  1657. <th>Field</th>
  1658. <th>Description</th>
  1659. </tr>
  1660. </thead>
  1661. <tbody>
  1662. <tr>
  1663. <td>
  1664. <code>oidcProviderArn</code></br>
  1665. <em>
  1666. string
  1667. </em>
  1668. </td>
  1669. <td>
  1670. </td>
  1671. </tr>
  1672. <tr>
  1673. <td>
  1674. <code>oidcTokenFilePath</code></br>
  1675. <em>
  1676. string
  1677. </em>
  1678. </td>
  1679. <td>
  1680. </td>
  1681. </tr>
  1682. <tr>
  1683. <td>
  1684. <code>roleArn</code></br>
  1685. <em>
  1686. string
  1687. </em>
  1688. </td>
  1689. <td>
  1690. </td>
  1691. </tr>
  1692. <tr>
  1693. <td>
  1694. <code>sessionName</code></br>
  1695. <em>
  1696. string
  1697. </em>
  1698. </td>
  1699. <td>
  1700. </td>
  1701. </tr>
  1702. </tbody>
  1703. </table>
  1704. <h3 id="external-secrets.io/v1beta1.AzureAuthType">AzureAuthType
  1705. (<code>string</code> alias)</p></h3>
  1706. <p>
  1707. (<em>Appears on:</em>
  1708. <a href="#external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider</a>)
  1709. </p>
  1710. <p>
  1711. <p>AuthType describes how to authenticate to the Azure Keyvault
  1712. Only one of the following auth types may be specified.
  1713. If none of the following auth type is specified, the default one
  1714. is ServicePrincipal.</p>
  1715. </p>
  1716. <table>
  1717. <thead>
  1718. <tr>
  1719. <th>Value</th>
  1720. <th>Description</th>
  1721. </tr>
  1722. </thead>
  1723. <tbody><tr><td><p>&#34;ManagedIdentity&#34;</p></td>
  1724. <td><p>Using Managed Identity to authenticate. Used with aad-pod-identity installed in the cluster.</p>
  1725. </td>
  1726. </tr><tr><td><p>&#34;ServicePrincipal&#34;</p></td>
  1727. <td><p>Using service principal to authenticate, which needs a tenantId, a clientId and a clientSecret.</p>
  1728. </td>
  1729. </tr><tr><td><p>&#34;WorkloadIdentity&#34;</p></td>
  1730. <td><p>Using Workload Identity service accounts to authenticate.</p>
  1731. </td>
  1732. </tr></tbody>
  1733. </table>
  1734. <h3 id="external-secrets.io/v1beta1.AzureEnvironmentType">AzureEnvironmentType
  1735. (<code>string</code> alias)</p></h3>
  1736. <p>
  1737. (<em>Appears on:</em>
  1738. <a href="#external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider</a>)
  1739. </p>
  1740. <p>
  1741. <p>AzureEnvironmentType specifies the Azure cloud environment endpoints to use for
  1742. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  1743. The following endpoints are available, also see here: <a href="https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152">https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152</a>
  1744. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud</p>
  1745. </p>
  1746. <table>
  1747. <thead>
  1748. <tr>
  1749. <th>Value</th>
  1750. <th>Description</th>
  1751. </tr>
  1752. </thead>
  1753. <tbody><tr><td><p>&#34;ChinaCloud&#34;</p></td>
  1754. <td></td>
  1755. </tr><tr><td><p>&#34;GermanCloud&#34;</p></td>
  1756. <td></td>
  1757. </tr><tr><td><p>&#34;PublicCloud&#34;</p></td>
  1758. <td></td>
  1759. </tr><tr><td><p>&#34;USGovernmentCloud&#34;</p></td>
  1760. <td></td>
  1761. </tr></tbody>
  1762. </table>
  1763. <h3 id="external-secrets.io/v1beta1.AzureKVAuth">AzureKVAuth
  1764. </h3>
  1765. <p>
  1766. (<em>Appears on:</em>
  1767. <a href="#external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider</a>)
  1768. </p>
  1769. <p>
  1770. <p>Configuration used to authenticate with Azure.</p>
  1771. </p>
  1772. <table>
  1773. <thead>
  1774. <tr>
  1775. <th>Field</th>
  1776. <th>Description</th>
  1777. </tr>
  1778. </thead>
  1779. <tbody>
  1780. <tr>
  1781. <td>
  1782. <code>clientId</code></br>
  1783. <em>
  1784. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1785. External Secrets meta/v1.SecretKeySelector
  1786. </a>
  1787. </em>
  1788. </td>
  1789. <td>
  1790. <em>(Optional)</em>
  1791. <p>The Azure clientId of the service principle used for authentication.</p>
  1792. </td>
  1793. </tr>
  1794. <tr>
  1795. <td>
  1796. <code>clientSecret</code></br>
  1797. <em>
  1798. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1799. External Secrets meta/v1.SecretKeySelector
  1800. </a>
  1801. </em>
  1802. </td>
  1803. <td>
  1804. <em>(Optional)</em>
  1805. <p>The Azure ClientSecret of the service principle used for authentication.</p>
  1806. </td>
  1807. </tr>
  1808. </tbody>
  1809. </table>
  1810. <h3 id="external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider
  1811. </h3>
  1812. <p>
  1813. (<em>Appears on:</em>
  1814. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  1815. </p>
  1816. <p>
  1817. <p>Configures an store to sync secrets using Azure KV.</p>
  1818. </p>
  1819. <table>
  1820. <thead>
  1821. <tr>
  1822. <th>Field</th>
  1823. <th>Description</th>
  1824. </tr>
  1825. </thead>
  1826. <tbody>
  1827. <tr>
  1828. <td>
  1829. <code>authType</code></br>
  1830. <em>
  1831. <a href="#external-secrets.io/v1beta1.AzureAuthType">
  1832. AzureAuthType
  1833. </a>
  1834. </em>
  1835. </td>
  1836. <td>
  1837. <em>(Optional)</em>
  1838. <p>Auth type defines how to authenticate to the keyvault service.
  1839. Valid values are:
  1840. - &ldquo;ServicePrincipal&rdquo; (default): Using a service principal (tenantId, clientId, clientSecret)
  1841. - &ldquo;ManagedIdentity&rdquo;: Using Managed Identity assigned to the pod (see aad-pod-identity)</p>
  1842. </td>
  1843. </tr>
  1844. <tr>
  1845. <td>
  1846. <code>vaultUrl</code></br>
  1847. <em>
  1848. string
  1849. </em>
  1850. </td>
  1851. <td>
  1852. <p>Vault Url from which the secrets to be fetched from.</p>
  1853. </td>
  1854. </tr>
  1855. <tr>
  1856. <td>
  1857. <code>tenantId</code></br>
  1858. <em>
  1859. string
  1860. </em>
  1861. </td>
  1862. <td>
  1863. <em>(Optional)</em>
  1864. <p>TenantID configures the Azure Tenant to send requests to. Required for ServicePrincipal auth type.</p>
  1865. </td>
  1866. </tr>
  1867. <tr>
  1868. <td>
  1869. <code>environmentType</code></br>
  1870. <em>
  1871. <a href="#external-secrets.io/v1beta1.AzureEnvironmentType">
  1872. AzureEnvironmentType
  1873. </a>
  1874. </em>
  1875. </td>
  1876. <td>
  1877. <p>EnvironmentType specifies the Azure cloud environment endpoints to use for
  1878. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  1879. The following endpoints are available, also see here: <a href="https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152">https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152</a>
  1880. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud</p>
  1881. </td>
  1882. </tr>
  1883. <tr>
  1884. <td>
  1885. <code>authSecretRef</code></br>
  1886. <em>
  1887. <a href="#external-secrets.io/v1beta1.AzureKVAuth">
  1888. AzureKVAuth
  1889. </a>
  1890. </em>
  1891. </td>
  1892. <td>
  1893. <em>(Optional)</em>
  1894. <p>Auth configures how the operator authenticates with Azure. Required for ServicePrincipal auth type.</p>
  1895. </td>
  1896. </tr>
  1897. <tr>
  1898. <td>
  1899. <code>serviceAccountRef</code></br>
  1900. <em>
  1901. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  1902. External Secrets meta/v1.ServiceAccountSelector
  1903. </a>
  1904. </em>
  1905. </td>
  1906. <td>
  1907. <em>(Optional)</em>
  1908. <p>ServiceAccountRef specified the service account
  1909. that should be used when authenticating with WorkloadIdentity.</p>
  1910. </td>
  1911. </tr>
  1912. <tr>
  1913. <td>
  1914. <code>identityId</code></br>
  1915. <em>
  1916. string
  1917. </em>
  1918. </td>
  1919. <td>
  1920. <em>(Optional)</em>
  1921. <p>If multiple Managed Identity is assigned to the pod, you can select the one to be used</p>
  1922. </td>
  1923. </tr>
  1924. </tbody>
  1925. </table>
  1926. <h3 id="external-secrets.io/v1beta1.CAProvider">CAProvider
  1927. </h3>
  1928. <p>
  1929. (<em>Appears on:</em>
  1930. <a href="#external-secrets.io/v1beta1.AkeylessProvider">AkeylessProvider</a>,
  1931. <a href="#external-secrets.io/v1beta1.ConjurProvider">ConjurProvider</a>,
  1932. <a href="#external-secrets.io/v1beta1.KubernetesServer">KubernetesServer</a>,
  1933. <a href="#external-secrets.io/v1beta1.VaultProvider">VaultProvider</a>)
  1934. </p>
  1935. <p>
  1936. <p>Used to provide custom certificate authority (CA) certificates
  1937. for a secret store. The CAProvider points to a Secret or ConfigMap resource
  1938. that contains a PEM-encoded certificate.</p>
  1939. </p>
  1940. <table>
  1941. <thead>
  1942. <tr>
  1943. <th>Field</th>
  1944. <th>Description</th>
  1945. </tr>
  1946. </thead>
  1947. <tbody>
  1948. <tr>
  1949. <td>
  1950. <code>type</code></br>
  1951. <em>
  1952. <a href="#external-secrets.io/v1beta1.CAProviderType">
  1953. CAProviderType
  1954. </a>
  1955. </em>
  1956. </td>
  1957. <td>
  1958. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  1959. </td>
  1960. </tr>
  1961. <tr>
  1962. <td>
  1963. <code>name</code></br>
  1964. <em>
  1965. string
  1966. </em>
  1967. </td>
  1968. <td>
  1969. <p>The name of the object located at the provider type.</p>
  1970. </td>
  1971. </tr>
  1972. <tr>
  1973. <td>
  1974. <code>key</code></br>
  1975. <em>
  1976. string
  1977. </em>
  1978. </td>
  1979. <td>
  1980. <p>The key where the CA certificate can be found in the Secret or ConfigMap.</p>
  1981. </td>
  1982. </tr>
  1983. <tr>
  1984. <td>
  1985. <code>namespace</code></br>
  1986. <em>
  1987. string
  1988. </em>
  1989. </td>
  1990. <td>
  1991. <em>(Optional)</em>
  1992. <p>The namespace the Provider type is in.
  1993. Can only be defined when used in a ClusterSecretStore.</p>
  1994. </td>
  1995. </tr>
  1996. </tbody>
  1997. </table>
  1998. <h3 id="external-secrets.io/v1beta1.CAProviderType">CAProviderType
  1999. (<code>string</code> alias)</p></h3>
  2000. <p>
  2001. (<em>Appears on:</em>
  2002. <a href="#external-secrets.io/v1beta1.CAProvider">CAProvider</a>)
  2003. </p>
  2004. <p>
  2005. </p>
  2006. <table>
  2007. <thead>
  2008. <tr>
  2009. <th>Value</th>
  2010. <th>Description</th>
  2011. </tr>
  2012. </thead>
  2013. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  2014. <td></td>
  2015. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  2016. <td></td>
  2017. </tr></tbody>
  2018. </table>
  2019. <h3 id="external-secrets.io/v1beta1.CertAuth">CertAuth
  2020. </h3>
  2021. <p>
  2022. (<em>Appears on:</em>
  2023. <a href="#external-secrets.io/v1beta1.KubernetesAuth">KubernetesAuth</a>)
  2024. </p>
  2025. <p>
  2026. </p>
  2027. <table>
  2028. <thead>
  2029. <tr>
  2030. <th>Field</th>
  2031. <th>Description</th>
  2032. </tr>
  2033. </thead>
  2034. <tbody>
  2035. <tr>
  2036. <td>
  2037. <code>clientCert</code></br>
  2038. <em>
  2039. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2040. External Secrets meta/v1.SecretKeySelector
  2041. </a>
  2042. </em>
  2043. </td>
  2044. <td>
  2045. </td>
  2046. </tr>
  2047. <tr>
  2048. <td>
  2049. <code>clientKey</code></br>
  2050. <em>
  2051. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2052. External Secrets meta/v1.SecretKeySelector
  2053. </a>
  2054. </em>
  2055. </td>
  2056. <td>
  2057. </td>
  2058. </tr>
  2059. </tbody>
  2060. </table>
  2061. <h3 id="external-secrets.io/v1beta1.ChefAuth">ChefAuth
  2062. </h3>
  2063. <p>
  2064. (<em>Appears on:</em>
  2065. <a href="#external-secrets.io/v1beta1.ChefProvider">ChefProvider</a>)
  2066. </p>
  2067. <p>
  2068. <p>ChefAuth contains a secretRef for credentials.</p>
  2069. </p>
  2070. <table>
  2071. <thead>
  2072. <tr>
  2073. <th>Field</th>
  2074. <th>Description</th>
  2075. </tr>
  2076. </thead>
  2077. <tbody>
  2078. <tr>
  2079. <td>
  2080. <code>secretRef</code></br>
  2081. <em>
  2082. <a href="#external-secrets.io/v1beta1.ChefAuthSecretRef">
  2083. ChefAuthSecretRef
  2084. </a>
  2085. </em>
  2086. </td>
  2087. <td>
  2088. </td>
  2089. </tr>
  2090. </tbody>
  2091. </table>
  2092. <h3 id="external-secrets.io/v1beta1.ChefAuthSecretRef">ChefAuthSecretRef
  2093. </h3>
  2094. <p>
  2095. (<em>Appears on:</em>
  2096. <a href="#external-secrets.io/v1beta1.ChefAuth">ChefAuth</a>)
  2097. </p>
  2098. <p>
  2099. <p>ChefAuthSecretRef holds secret references for chef server login credentials.</p>
  2100. </p>
  2101. <table>
  2102. <thead>
  2103. <tr>
  2104. <th>Field</th>
  2105. <th>Description</th>
  2106. </tr>
  2107. </thead>
  2108. <tbody>
  2109. <tr>
  2110. <td>
  2111. <code>privateKeySecretRef</code></br>
  2112. <em>
  2113. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2114. External Secrets meta/v1.SecretKeySelector
  2115. </a>
  2116. </em>
  2117. </td>
  2118. <td>
  2119. <p>SecretKey is the Signing Key in PEM format, used for authentication.</p>
  2120. </td>
  2121. </tr>
  2122. </tbody>
  2123. </table>
  2124. <h3 id="external-secrets.io/v1beta1.ChefProvider">ChefProvider
  2125. </h3>
  2126. <p>
  2127. (<em>Appears on:</em>
  2128. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  2129. </p>
  2130. <p>
  2131. <p>ChefProvider configures a store to sync secrets using basic chef server connection credentials.</p>
  2132. </p>
  2133. <table>
  2134. <thead>
  2135. <tr>
  2136. <th>Field</th>
  2137. <th>Description</th>
  2138. </tr>
  2139. </thead>
  2140. <tbody>
  2141. <tr>
  2142. <td>
  2143. <code>auth</code></br>
  2144. <em>
  2145. <a href="#external-secrets.io/v1beta1.ChefAuth">
  2146. ChefAuth
  2147. </a>
  2148. </em>
  2149. </td>
  2150. <td>
  2151. <p>Auth defines the information necessary to authenticate against chef Server</p>
  2152. </td>
  2153. </tr>
  2154. <tr>
  2155. <td>
  2156. <code>username</code></br>
  2157. <em>
  2158. string
  2159. </em>
  2160. </td>
  2161. <td>
  2162. <p>UserName should be the user ID on the chef server</p>
  2163. </td>
  2164. </tr>
  2165. <tr>
  2166. <td>
  2167. <code>serverUrl</code></br>
  2168. <em>
  2169. string
  2170. </em>
  2171. </td>
  2172. <td>
  2173. <p>ServerURL is the chef server URL used to connect to. If using orgs you should include your org in the url and terminate the url with a &ldquo;/&rdquo;</p>
  2174. </td>
  2175. </tr>
  2176. </tbody>
  2177. </table>
  2178. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecret">ClusterExternalSecret
  2179. </h3>
  2180. <p>
  2181. <p>ClusterExternalSecret is the Schema for the clusterexternalsecrets API.</p>
  2182. </p>
  2183. <table>
  2184. <thead>
  2185. <tr>
  2186. <th>Field</th>
  2187. <th>Description</th>
  2188. </tr>
  2189. </thead>
  2190. <tbody>
  2191. <tr>
  2192. <td>
  2193. <code>metadata</code></br>
  2194. <em>
  2195. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  2196. Kubernetes meta/v1.ObjectMeta
  2197. </a>
  2198. </em>
  2199. </td>
  2200. <td>
  2201. Refer to the Kubernetes API documentation for the fields of the
  2202. <code>metadata</code> field.
  2203. </td>
  2204. </tr>
  2205. <tr>
  2206. <td>
  2207. <code>spec</code></br>
  2208. <em>
  2209. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretSpec">
  2210. ClusterExternalSecretSpec
  2211. </a>
  2212. </em>
  2213. </td>
  2214. <td>
  2215. <br/>
  2216. <br/>
  2217. <table>
  2218. <tr>
  2219. <td>
  2220. <code>externalSecretSpec</code></br>
  2221. <em>
  2222. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">
  2223. ExternalSecretSpec
  2224. </a>
  2225. </em>
  2226. </td>
  2227. <td>
  2228. <p>The spec for the ExternalSecrets to be created</p>
  2229. </td>
  2230. </tr>
  2231. <tr>
  2232. <td>
  2233. <code>externalSecretName</code></br>
  2234. <em>
  2235. string
  2236. </em>
  2237. </td>
  2238. <td>
  2239. <em>(Optional)</em>
  2240. <p>The name of the external secrets to be created defaults to the name of the ClusterExternalSecret</p>
  2241. </td>
  2242. </tr>
  2243. <tr>
  2244. <td>
  2245. <code>externalSecretMetadata</code></br>
  2246. <em>
  2247. <a href="#external-secrets.io/v1beta1.ExternalSecretMetadata">
  2248. ExternalSecretMetadata
  2249. </a>
  2250. </em>
  2251. </td>
  2252. <td>
  2253. <em>(Optional)</em>
  2254. <p>The metadata of the external secrets to be created</p>
  2255. </td>
  2256. </tr>
  2257. <tr>
  2258. <td>
  2259. <code>namespaceSelector</code></br>
  2260. <em>
  2261. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  2262. Kubernetes meta/v1.LabelSelector
  2263. </a>
  2264. </em>
  2265. </td>
  2266. <td>
  2267. <em>(Optional)</em>
  2268. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.</p>
  2269. </td>
  2270. </tr>
  2271. <tr>
  2272. <td>
  2273. <code>namespaces</code></br>
  2274. <em>
  2275. []string
  2276. </em>
  2277. </td>
  2278. <td>
  2279. <em>(Optional)</em>
  2280. <p>Choose namespaces by name. This field is ORed with anything that NamespaceSelector ends up choosing.</p>
  2281. </td>
  2282. </tr>
  2283. <tr>
  2284. <td>
  2285. <code>refreshTime</code></br>
  2286. <em>
  2287. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  2288. Kubernetes meta/v1.Duration
  2289. </a>
  2290. </em>
  2291. </td>
  2292. <td>
  2293. <p>The time in which the controller should reconcile its objects and recheck namespaces for labels.</p>
  2294. </td>
  2295. </tr>
  2296. </table>
  2297. </td>
  2298. </tr>
  2299. <tr>
  2300. <td>
  2301. <code>status</code></br>
  2302. <em>
  2303. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatus">
  2304. ClusterExternalSecretStatus
  2305. </a>
  2306. </em>
  2307. </td>
  2308. <td>
  2309. </td>
  2310. </tr>
  2311. </tbody>
  2312. </table>
  2313. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretConditionType">ClusterExternalSecretConditionType
  2314. (<code>string</code> alias)</p></h3>
  2315. <p>
  2316. (<em>Appears on:</em>
  2317. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition</a>)
  2318. </p>
  2319. <p>
  2320. </p>
  2321. <table>
  2322. <thead>
  2323. <tr>
  2324. <th>Value</th>
  2325. <th>Description</th>
  2326. </tr>
  2327. </thead>
  2328. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  2329. <td></td>
  2330. </tr></tbody>
  2331. </table>
  2332. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretNamespaceFailure">ClusterExternalSecretNamespaceFailure
  2333. </h3>
  2334. <p>
  2335. (<em>Appears on:</em>
  2336. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  2337. </p>
  2338. <p>
  2339. <p>ClusterExternalSecretNamespaceFailure represents a failed namespace deployment and it&rsquo;s reason.</p>
  2340. </p>
  2341. <table>
  2342. <thead>
  2343. <tr>
  2344. <th>Field</th>
  2345. <th>Description</th>
  2346. </tr>
  2347. </thead>
  2348. <tbody>
  2349. <tr>
  2350. <td>
  2351. <code>namespace</code></br>
  2352. <em>
  2353. string
  2354. </em>
  2355. </td>
  2356. <td>
  2357. <p>Namespace is the namespace that failed when trying to apply an ExternalSecret</p>
  2358. </td>
  2359. </tr>
  2360. <tr>
  2361. <td>
  2362. <code>reason</code></br>
  2363. <em>
  2364. string
  2365. </em>
  2366. </td>
  2367. <td>
  2368. <em>(Optional)</em>
  2369. <p>Reason is why the ExternalSecret failed to apply to the namespace</p>
  2370. </td>
  2371. </tr>
  2372. </tbody>
  2373. </table>
  2374. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretSpec">ClusterExternalSecretSpec
  2375. </h3>
  2376. <p>
  2377. (<em>Appears on:</em>
  2378. <a href="#external-secrets.io/v1beta1.ClusterExternalSecret">ClusterExternalSecret</a>)
  2379. </p>
  2380. <p>
  2381. <p>ClusterExternalSecretSpec defines the desired state of ClusterExternalSecret.</p>
  2382. </p>
  2383. <table>
  2384. <thead>
  2385. <tr>
  2386. <th>Field</th>
  2387. <th>Description</th>
  2388. </tr>
  2389. </thead>
  2390. <tbody>
  2391. <tr>
  2392. <td>
  2393. <code>externalSecretSpec</code></br>
  2394. <em>
  2395. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">
  2396. ExternalSecretSpec
  2397. </a>
  2398. </em>
  2399. </td>
  2400. <td>
  2401. <p>The spec for the ExternalSecrets to be created</p>
  2402. </td>
  2403. </tr>
  2404. <tr>
  2405. <td>
  2406. <code>externalSecretName</code></br>
  2407. <em>
  2408. string
  2409. </em>
  2410. </td>
  2411. <td>
  2412. <em>(Optional)</em>
  2413. <p>The name of the external secrets to be created defaults to the name of the ClusterExternalSecret</p>
  2414. </td>
  2415. </tr>
  2416. <tr>
  2417. <td>
  2418. <code>externalSecretMetadata</code></br>
  2419. <em>
  2420. <a href="#external-secrets.io/v1beta1.ExternalSecretMetadata">
  2421. ExternalSecretMetadata
  2422. </a>
  2423. </em>
  2424. </td>
  2425. <td>
  2426. <em>(Optional)</em>
  2427. <p>The metadata of the external secrets to be created</p>
  2428. </td>
  2429. </tr>
  2430. <tr>
  2431. <td>
  2432. <code>namespaceSelector</code></br>
  2433. <em>
  2434. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  2435. Kubernetes meta/v1.LabelSelector
  2436. </a>
  2437. </em>
  2438. </td>
  2439. <td>
  2440. <em>(Optional)</em>
  2441. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.</p>
  2442. </td>
  2443. </tr>
  2444. <tr>
  2445. <td>
  2446. <code>namespaces</code></br>
  2447. <em>
  2448. []string
  2449. </em>
  2450. </td>
  2451. <td>
  2452. <em>(Optional)</em>
  2453. <p>Choose namespaces by name. This field is ORed with anything that NamespaceSelector ends up choosing.</p>
  2454. </td>
  2455. </tr>
  2456. <tr>
  2457. <td>
  2458. <code>refreshTime</code></br>
  2459. <em>
  2460. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  2461. Kubernetes meta/v1.Duration
  2462. </a>
  2463. </em>
  2464. </td>
  2465. <td>
  2466. <p>The time in which the controller should reconcile its objects and recheck namespaces for labels.</p>
  2467. </td>
  2468. </tr>
  2469. </tbody>
  2470. </table>
  2471. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretStatus">ClusterExternalSecretStatus
  2472. </h3>
  2473. <p>
  2474. (<em>Appears on:</em>
  2475. <a href="#external-secrets.io/v1beta1.ClusterExternalSecret">ClusterExternalSecret</a>)
  2476. </p>
  2477. <p>
  2478. <p>ClusterExternalSecretStatus defines the observed state of ClusterExternalSecret.</p>
  2479. </p>
  2480. <table>
  2481. <thead>
  2482. <tr>
  2483. <th>Field</th>
  2484. <th>Description</th>
  2485. </tr>
  2486. </thead>
  2487. <tbody>
  2488. <tr>
  2489. <td>
  2490. <code>externalSecretName</code></br>
  2491. <em>
  2492. string
  2493. </em>
  2494. </td>
  2495. <td>
  2496. <p>ExternalSecretName is the name of the ExternalSecrets created by the ClusterExternalSecret</p>
  2497. </td>
  2498. </tr>
  2499. <tr>
  2500. <td>
  2501. <code>failedNamespaces</code></br>
  2502. <em>
  2503. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretNamespaceFailure">
  2504. []ClusterExternalSecretNamespaceFailure
  2505. </a>
  2506. </em>
  2507. </td>
  2508. <td>
  2509. <em>(Optional)</em>
  2510. <p>Failed namespaces are the namespaces that failed to apply an ExternalSecret</p>
  2511. </td>
  2512. </tr>
  2513. <tr>
  2514. <td>
  2515. <code>provisionedNamespaces</code></br>
  2516. <em>
  2517. []string
  2518. </em>
  2519. </td>
  2520. <td>
  2521. <em>(Optional)</em>
  2522. <p>ProvisionedNamespaces are the namespaces where the ClusterExternalSecret has secrets</p>
  2523. </td>
  2524. </tr>
  2525. <tr>
  2526. <td>
  2527. <code>conditions</code></br>
  2528. <em>
  2529. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatusCondition">
  2530. []ClusterExternalSecretStatusCondition
  2531. </a>
  2532. </em>
  2533. </td>
  2534. <td>
  2535. <em>(Optional)</em>
  2536. </td>
  2537. </tr>
  2538. </tbody>
  2539. </table>
  2540. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition
  2541. </h3>
  2542. <p>
  2543. (<em>Appears on:</em>
  2544. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  2545. </p>
  2546. <p>
  2547. </p>
  2548. <table>
  2549. <thead>
  2550. <tr>
  2551. <th>Field</th>
  2552. <th>Description</th>
  2553. </tr>
  2554. </thead>
  2555. <tbody>
  2556. <tr>
  2557. <td>
  2558. <code>type</code></br>
  2559. <em>
  2560. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretConditionType">
  2561. ClusterExternalSecretConditionType
  2562. </a>
  2563. </em>
  2564. </td>
  2565. <td>
  2566. </td>
  2567. </tr>
  2568. <tr>
  2569. <td>
  2570. <code>status</code></br>
  2571. <em>
  2572. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  2573. Kubernetes core/v1.ConditionStatus
  2574. </a>
  2575. </em>
  2576. </td>
  2577. <td>
  2578. </td>
  2579. </tr>
  2580. <tr>
  2581. <td>
  2582. <code>message</code></br>
  2583. <em>
  2584. string
  2585. </em>
  2586. </td>
  2587. <td>
  2588. <em>(Optional)</em>
  2589. </td>
  2590. </tr>
  2591. </tbody>
  2592. </table>
  2593. <h3 id="external-secrets.io/v1beta1.ClusterSecretStore">ClusterSecretStore
  2594. </h3>
  2595. <p>
  2596. <p>ClusterSecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  2597. </p>
  2598. <table>
  2599. <thead>
  2600. <tr>
  2601. <th>Field</th>
  2602. <th>Description</th>
  2603. </tr>
  2604. </thead>
  2605. <tbody>
  2606. <tr>
  2607. <td>
  2608. <code>metadata</code></br>
  2609. <em>
  2610. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  2611. Kubernetes meta/v1.ObjectMeta
  2612. </a>
  2613. </em>
  2614. </td>
  2615. <td>
  2616. Refer to the Kubernetes API documentation for the fields of the
  2617. <code>metadata</code> field.
  2618. </td>
  2619. </tr>
  2620. <tr>
  2621. <td>
  2622. <code>spec</code></br>
  2623. <em>
  2624. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">
  2625. SecretStoreSpec
  2626. </a>
  2627. </em>
  2628. </td>
  2629. <td>
  2630. <br/>
  2631. <br/>
  2632. <table>
  2633. <tr>
  2634. <td>
  2635. <code>controller</code></br>
  2636. <em>
  2637. string
  2638. </em>
  2639. </td>
  2640. <td>
  2641. <em>(Optional)</em>
  2642. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  2643. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  2644. </td>
  2645. </tr>
  2646. <tr>
  2647. <td>
  2648. <code>provider</code></br>
  2649. <em>
  2650. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">
  2651. SecretStoreProvider
  2652. </a>
  2653. </em>
  2654. </td>
  2655. <td>
  2656. <p>Used to configure the provider. Only one provider may be set</p>
  2657. </td>
  2658. </tr>
  2659. <tr>
  2660. <td>
  2661. <code>retrySettings</code></br>
  2662. <em>
  2663. <a href="#external-secrets.io/v1beta1.SecretStoreRetrySettings">
  2664. SecretStoreRetrySettings
  2665. </a>
  2666. </em>
  2667. </td>
  2668. <td>
  2669. <em>(Optional)</em>
  2670. <p>Used to configure http retries if failed</p>
  2671. </td>
  2672. </tr>
  2673. <tr>
  2674. <td>
  2675. <code>refreshInterval</code></br>
  2676. <em>
  2677. int
  2678. </em>
  2679. </td>
  2680. <td>
  2681. <em>(Optional)</em>
  2682. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  2683. </td>
  2684. </tr>
  2685. <tr>
  2686. <td>
  2687. <code>conditions</code></br>
  2688. <em>
  2689. <a href="#external-secrets.io/v1beta1.ClusterSecretStoreCondition">
  2690. []ClusterSecretStoreCondition
  2691. </a>
  2692. </em>
  2693. </td>
  2694. <td>
  2695. <em>(Optional)</em>
  2696. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  2697. </td>
  2698. </tr>
  2699. </table>
  2700. </td>
  2701. </tr>
  2702. <tr>
  2703. <td>
  2704. <code>status</code></br>
  2705. <em>
  2706. <a href="#external-secrets.io/v1beta1.SecretStoreStatus">
  2707. SecretStoreStatus
  2708. </a>
  2709. </em>
  2710. </td>
  2711. <td>
  2712. </td>
  2713. </tr>
  2714. </tbody>
  2715. </table>
  2716. <h3 id="external-secrets.io/v1beta1.ClusterSecretStoreCondition">ClusterSecretStoreCondition
  2717. </h3>
  2718. <p>
  2719. (<em>Appears on:</em>
  2720. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec</a>)
  2721. </p>
  2722. <p>
  2723. <p>ClusterSecretStoreCondition describes a condition by which to choose namespaces to process ExternalSecrets in
  2724. for a ClusterSecretStore instance.</p>
  2725. </p>
  2726. <table>
  2727. <thead>
  2728. <tr>
  2729. <th>Field</th>
  2730. <th>Description</th>
  2731. </tr>
  2732. </thead>
  2733. <tbody>
  2734. <tr>
  2735. <td>
  2736. <code>namespaceSelector</code></br>
  2737. <em>
  2738. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  2739. Kubernetes meta/v1.LabelSelector
  2740. </a>
  2741. </em>
  2742. </td>
  2743. <td>
  2744. <em>(Optional)</em>
  2745. <p>Choose namespace using a labelSelector</p>
  2746. </td>
  2747. </tr>
  2748. <tr>
  2749. <td>
  2750. <code>namespaces</code></br>
  2751. <em>
  2752. []string
  2753. </em>
  2754. </td>
  2755. <td>
  2756. <p>Choose namespaces by name</p>
  2757. </td>
  2758. </tr>
  2759. </tbody>
  2760. </table>
  2761. <h3 id="external-secrets.io/v1beta1.ConjurAPIKey">ConjurAPIKey
  2762. </h3>
  2763. <p>
  2764. (<em>Appears on:</em>
  2765. <a href="#external-secrets.io/v1beta1.ConjurAuth">ConjurAuth</a>)
  2766. </p>
  2767. <p>
  2768. </p>
  2769. <table>
  2770. <thead>
  2771. <tr>
  2772. <th>Field</th>
  2773. <th>Description</th>
  2774. </tr>
  2775. </thead>
  2776. <tbody>
  2777. <tr>
  2778. <td>
  2779. <code>account</code></br>
  2780. <em>
  2781. string
  2782. </em>
  2783. </td>
  2784. <td>
  2785. </td>
  2786. </tr>
  2787. <tr>
  2788. <td>
  2789. <code>userRef</code></br>
  2790. <em>
  2791. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2792. External Secrets meta/v1.SecretKeySelector
  2793. </a>
  2794. </em>
  2795. </td>
  2796. <td>
  2797. </td>
  2798. </tr>
  2799. <tr>
  2800. <td>
  2801. <code>apiKeyRef</code></br>
  2802. <em>
  2803. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2804. External Secrets meta/v1.SecretKeySelector
  2805. </a>
  2806. </em>
  2807. </td>
  2808. <td>
  2809. </td>
  2810. </tr>
  2811. </tbody>
  2812. </table>
  2813. <h3 id="external-secrets.io/v1beta1.ConjurAuth">ConjurAuth
  2814. </h3>
  2815. <p>
  2816. (<em>Appears on:</em>
  2817. <a href="#external-secrets.io/v1beta1.ConjurProvider">ConjurProvider</a>)
  2818. </p>
  2819. <p>
  2820. </p>
  2821. <table>
  2822. <thead>
  2823. <tr>
  2824. <th>Field</th>
  2825. <th>Description</th>
  2826. </tr>
  2827. </thead>
  2828. <tbody>
  2829. <tr>
  2830. <td>
  2831. <code>apikey</code></br>
  2832. <em>
  2833. <a href="#external-secrets.io/v1beta1.ConjurAPIKey">
  2834. ConjurAPIKey
  2835. </a>
  2836. </em>
  2837. </td>
  2838. <td>
  2839. <em>(Optional)</em>
  2840. </td>
  2841. </tr>
  2842. <tr>
  2843. <td>
  2844. <code>jwt</code></br>
  2845. <em>
  2846. <a href="#external-secrets.io/v1beta1.ConjurJWT">
  2847. ConjurJWT
  2848. </a>
  2849. </em>
  2850. </td>
  2851. <td>
  2852. <em>(Optional)</em>
  2853. </td>
  2854. </tr>
  2855. </tbody>
  2856. </table>
  2857. <h3 id="external-secrets.io/v1beta1.ConjurJWT">ConjurJWT
  2858. </h3>
  2859. <p>
  2860. (<em>Appears on:</em>
  2861. <a href="#external-secrets.io/v1beta1.ConjurAuth">ConjurAuth</a>)
  2862. </p>
  2863. <p>
  2864. </p>
  2865. <table>
  2866. <thead>
  2867. <tr>
  2868. <th>Field</th>
  2869. <th>Description</th>
  2870. </tr>
  2871. </thead>
  2872. <tbody>
  2873. <tr>
  2874. <td>
  2875. <code>account</code></br>
  2876. <em>
  2877. string
  2878. </em>
  2879. </td>
  2880. <td>
  2881. </td>
  2882. </tr>
  2883. <tr>
  2884. <td>
  2885. <code>serviceID</code></br>
  2886. <em>
  2887. string
  2888. </em>
  2889. </td>
  2890. <td>
  2891. <p>The conjur authn jwt webservice id</p>
  2892. </td>
  2893. </tr>
  2894. <tr>
  2895. <td>
  2896. <code>secretRef</code></br>
  2897. <em>
  2898. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2899. External Secrets meta/v1.SecretKeySelector
  2900. </a>
  2901. </em>
  2902. </td>
  2903. <td>
  2904. <em>(Optional)</em>
  2905. <p>Optional SecretRef that refers to a key in a Secret resource containing JWT token to
  2906. authenticate with Conjur using the JWT authentication method.</p>
  2907. </td>
  2908. </tr>
  2909. <tr>
  2910. <td>
  2911. <code>serviceAccountRef</code></br>
  2912. <em>
  2913. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  2914. External Secrets meta/v1.ServiceAccountSelector
  2915. </a>
  2916. </em>
  2917. </td>
  2918. <td>
  2919. <em>(Optional)</em>
  2920. <p>Optional ServiceAccountRef specifies the Kubernetes service account for which to request
  2921. a token for with the <code>TokenRequest</code> API.</p>
  2922. </td>
  2923. </tr>
  2924. </tbody>
  2925. </table>
  2926. <h3 id="external-secrets.io/v1beta1.ConjurProvider">ConjurProvider
  2927. </h3>
  2928. <p>
  2929. (<em>Appears on:</em>
  2930. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  2931. </p>
  2932. <p>
  2933. </p>
  2934. <table>
  2935. <thead>
  2936. <tr>
  2937. <th>Field</th>
  2938. <th>Description</th>
  2939. </tr>
  2940. </thead>
  2941. <tbody>
  2942. <tr>
  2943. <td>
  2944. <code>url</code></br>
  2945. <em>
  2946. string
  2947. </em>
  2948. </td>
  2949. <td>
  2950. </td>
  2951. </tr>
  2952. <tr>
  2953. <td>
  2954. <code>caBundle</code></br>
  2955. <em>
  2956. string
  2957. </em>
  2958. </td>
  2959. <td>
  2960. <em>(Optional)</em>
  2961. </td>
  2962. </tr>
  2963. <tr>
  2964. <td>
  2965. <code>caProvider</code></br>
  2966. <em>
  2967. <a href="#external-secrets.io/v1beta1.CAProvider">
  2968. CAProvider
  2969. </a>
  2970. </em>
  2971. </td>
  2972. <td>
  2973. <em>(Optional)</em>
  2974. </td>
  2975. </tr>
  2976. <tr>
  2977. <td>
  2978. <code>auth</code></br>
  2979. <em>
  2980. <a href="#external-secrets.io/v1beta1.ConjurAuth">
  2981. ConjurAuth
  2982. </a>
  2983. </em>
  2984. </td>
  2985. <td>
  2986. </td>
  2987. </tr>
  2988. </tbody>
  2989. </table>
  2990. <h3 id="external-secrets.io/v1beta1.DelineaProvider">DelineaProvider
  2991. </h3>
  2992. <p>
  2993. (<em>Appears on:</em>
  2994. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  2995. </p>
  2996. <p>
  2997. <p>See <a href="https://github.com/DelineaXPM/dsv-sdk-go/blob/main/vault/vault.go">https://github.com/DelineaXPM/dsv-sdk-go/blob/main/vault/vault.go</a>.</p>
  2998. </p>
  2999. <table>
  3000. <thead>
  3001. <tr>
  3002. <th>Field</th>
  3003. <th>Description</th>
  3004. </tr>
  3005. </thead>
  3006. <tbody>
  3007. <tr>
  3008. <td>
  3009. <code>clientId</code></br>
  3010. <em>
  3011. <a href="#external-secrets.io/v1beta1.DelineaProviderSecretRef">
  3012. DelineaProviderSecretRef
  3013. </a>
  3014. </em>
  3015. </td>
  3016. <td>
  3017. <p>ClientID is the non-secret part of the credential.</p>
  3018. </td>
  3019. </tr>
  3020. <tr>
  3021. <td>
  3022. <code>clientSecret</code></br>
  3023. <em>
  3024. <a href="#external-secrets.io/v1beta1.DelineaProviderSecretRef">
  3025. DelineaProviderSecretRef
  3026. </a>
  3027. </em>
  3028. </td>
  3029. <td>
  3030. <p>ClientSecret is the secret part of the credential.</p>
  3031. </td>
  3032. </tr>
  3033. <tr>
  3034. <td>
  3035. <code>tenant</code></br>
  3036. <em>
  3037. string
  3038. </em>
  3039. </td>
  3040. <td>
  3041. <p>Tenant is the chosen hostname / site name.</p>
  3042. </td>
  3043. </tr>
  3044. <tr>
  3045. <td>
  3046. <code>urlTemplate</code></br>
  3047. <em>
  3048. string
  3049. </em>
  3050. </td>
  3051. <td>
  3052. <em>(Optional)</em>
  3053. <p>URLTemplate
  3054. If unset, defaults to &ldquo;https://%s.secretsvaultcloud.%s/v1/%s%s&rdquo;.</p>
  3055. </td>
  3056. </tr>
  3057. <tr>
  3058. <td>
  3059. <code>tld</code></br>
  3060. <em>
  3061. string
  3062. </em>
  3063. </td>
  3064. <td>
  3065. <em>(Optional)</em>
  3066. <p>TLD is based on the server location that was chosen during provisioning.
  3067. If unset, defaults to &ldquo;com&rdquo;.</p>
  3068. </td>
  3069. </tr>
  3070. </tbody>
  3071. </table>
  3072. <h3 id="external-secrets.io/v1beta1.DelineaProviderSecretRef">DelineaProviderSecretRef
  3073. </h3>
  3074. <p>
  3075. (<em>Appears on:</em>
  3076. <a href="#external-secrets.io/v1beta1.DelineaProvider">DelineaProvider</a>)
  3077. </p>
  3078. <p>
  3079. </p>
  3080. <table>
  3081. <thead>
  3082. <tr>
  3083. <th>Field</th>
  3084. <th>Description</th>
  3085. </tr>
  3086. </thead>
  3087. <tbody>
  3088. <tr>
  3089. <td>
  3090. <code>value</code></br>
  3091. <em>
  3092. string
  3093. </em>
  3094. </td>
  3095. <td>
  3096. <em>(Optional)</em>
  3097. <p>Value can be specified directly to set a value without using a secret.</p>
  3098. </td>
  3099. </tr>
  3100. <tr>
  3101. <td>
  3102. <code>secretRef</code></br>
  3103. <em>
  3104. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3105. External Secrets meta/v1.SecretKeySelector
  3106. </a>
  3107. </em>
  3108. </td>
  3109. <td>
  3110. <em>(Optional)</em>
  3111. <p>SecretRef references a key in a secret that will be used as value.</p>
  3112. </td>
  3113. </tr>
  3114. </tbody>
  3115. </table>
  3116. <h3 id="external-secrets.io/v1beta1.DopplerAuth">DopplerAuth
  3117. </h3>
  3118. <p>
  3119. (<em>Appears on:</em>
  3120. <a href="#external-secrets.io/v1beta1.DopplerProvider">DopplerProvider</a>)
  3121. </p>
  3122. <p>
  3123. </p>
  3124. <table>
  3125. <thead>
  3126. <tr>
  3127. <th>Field</th>
  3128. <th>Description</th>
  3129. </tr>
  3130. </thead>
  3131. <tbody>
  3132. <tr>
  3133. <td>
  3134. <code>secretRef</code></br>
  3135. <em>
  3136. <a href="#external-secrets.io/v1beta1.DopplerAuthSecretRef">
  3137. DopplerAuthSecretRef
  3138. </a>
  3139. </em>
  3140. </td>
  3141. <td>
  3142. </td>
  3143. </tr>
  3144. </tbody>
  3145. </table>
  3146. <h3 id="external-secrets.io/v1beta1.DopplerAuthSecretRef">DopplerAuthSecretRef
  3147. </h3>
  3148. <p>
  3149. (<em>Appears on:</em>
  3150. <a href="#external-secrets.io/v1beta1.DopplerAuth">DopplerAuth</a>)
  3151. </p>
  3152. <p>
  3153. </p>
  3154. <table>
  3155. <thead>
  3156. <tr>
  3157. <th>Field</th>
  3158. <th>Description</th>
  3159. </tr>
  3160. </thead>
  3161. <tbody>
  3162. <tr>
  3163. <td>
  3164. <code>dopplerToken</code></br>
  3165. <em>
  3166. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3167. External Secrets meta/v1.SecretKeySelector
  3168. </a>
  3169. </em>
  3170. </td>
  3171. <td>
  3172. <p>The DopplerToken is used for authentication.
  3173. See <a href="https://docs.doppler.com/reference/api#authentication">https://docs.doppler.com/reference/api#authentication</a> for auth token types.
  3174. The Key attribute defaults to dopplerToken if not specified.</p>
  3175. </td>
  3176. </tr>
  3177. </tbody>
  3178. </table>
  3179. <h3 id="external-secrets.io/v1beta1.DopplerProvider">DopplerProvider
  3180. </h3>
  3181. <p>
  3182. (<em>Appears on:</em>
  3183. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  3184. </p>
  3185. <p>
  3186. <p>DopplerProvider configures a store to sync secrets using the Doppler provider.
  3187. Project and Config are required if not using a Service Token.</p>
  3188. </p>
  3189. <table>
  3190. <thead>
  3191. <tr>
  3192. <th>Field</th>
  3193. <th>Description</th>
  3194. </tr>
  3195. </thead>
  3196. <tbody>
  3197. <tr>
  3198. <td>
  3199. <code>auth</code></br>
  3200. <em>
  3201. <a href="#external-secrets.io/v1beta1.DopplerAuth">
  3202. DopplerAuth
  3203. </a>
  3204. </em>
  3205. </td>
  3206. <td>
  3207. <p>Auth configures how the Operator authenticates with the Doppler API</p>
  3208. </td>
  3209. </tr>
  3210. <tr>
  3211. <td>
  3212. <code>project</code></br>
  3213. <em>
  3214. string
  3215. </em>
  3216. </td>
  3217. <td>
  3218. <em>(Optional)</em>
  3219. <p>Doppler project (required if not using a Service Token)</p>
  3220. </td>
  3221. </tr>
  3222. <tr>
  3223. <td>
  3224. <code>config</code></br>
  3225. <em>
  3226. string
  3227. </em>
  3228. </td>
  3229. <td>
  3230. <em>(Optional)</em>
  3231. <p>Doppler config (required if not using a Service Token)</p>
  3232. </td>
  3233. </tr>
  3234. <tr>
  3235. <td>
  3236. <code>nameTransformer</code></br>
  3237. <em>
  3238. string
  3239. </em>
  3240. </td>
  3241. <td>
  3242. <em>(Optional)</em>
  3243. <p>Environment variable compatible name transforms that change secret names to a different format</p>
  3244. </td>
  3245. </tr>
  3246. <tr>
  3247. <td>
  3248. <code>format</code></br>
  3249. <em>
  3250. string
  3251. </em>
  3252. </td>
  3253. <td>
  3254. <em>(Optional)</em>
  3255. <p>Format enables the downloading of secrets as a file (string)</p>
  3256. </td>
  3257. </tr>
  3258. </tbody>
  3259. </table>
  3260. <h3 id="external-secrets.io/v1beta1.ExternalSecret">ExternalSecret
  3261. </h3>
  3262. <p>
  3263. <p>ExternalSecret is the Schema for the external-secrets API.</p>
  3264. </p>
  3265. <table>
  3266. <thead>
  3267. <tr>
  3268. <th>Field</th>
  3269. <th>Description</th>
  3270. </tr>
  3271. </thead>
  3272. <tbody>
  3273. <tr>
  3274. <td>
  3275. <code>metadata</code></br>
  3276. <em>
  3277. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  3278. Kubernetes meta/v1.ObjectMeta
  3279. </a>
  3280. </em>
  3281. </td>
  3282. <td>
  3283. Refer to the Kubernetes API documentation for the fields of the
  3284. <code>metadata</code> field.
  3285. </td>
  3286. </tr>
  3287. <tr>
  3288. <td>
  3289. <code>spec</code></br>
  3290. <em>
  3291. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">
  3292. ExternalSecretSpec
  3293. </a>
  3294. </em>
  3295. </td>
  3296. <td>
  3297. <br/>
  3298. <br/>
  3299. <table>
  3300. <tr>
  3301. <td>
  3302. <code>secretStoreRef</code></br>
  3303. <em>
  3304. <a href="#external-secrets.io/v1beta1.SecretStoreRef">
  3305. SecretStoreRef
  3306. </a>
  3307. </em>
  3308. </td>
  3309. <td>
  3310. <em>(Optional)</em>
  3311. </td>
  3312. </tr>
  3313. <tr>
  3314. <td>
  3315. <code>target</code></br>
  3316. <em>
  3317. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">
  3318. ExternalSecretTarget
  3319. </a>
  3320. </em>
  3321. </td>
  3322. <td>
  3323. <em>(Optional)</em>
  3324. </td>
  3325. </tr>
  3326. <tr>
  3327. <td>
  3328. <code>refreshInterval</code></br>
  3329. <em>
  3330. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  3331. Kubernetes meta/v1.Duration
  3332. </a>
  3333. </em>
  3334. </td>
  3335. <td>
  3336. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider
  3337. Valid time units are &ldquo;ns&rdquo;, &ldquo;us&rdquo; (or &ldquo;µs&rdquo;), &ldquo;ms&rdquo;, &ldquo;s&rdquo;, &ldquo;m&rdquo;, &ldquo;h&rdquo;
  3338. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  3339. </td>
  3340. </tr>
  3341. <tr>
  3342. <td>
  3343. <code>data</code></br>
  3344. <em>
  3345. <a href="#external-secrets.io/v1beta1.ExternalSecretData">
  3346. []ExternalSecretData
  3347. </a>
  3348. </em>
  3349. </td>
  3350. <td>
  3351. <em>(Optional)</em>
  3352. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  3353. </td>
  3354. </tr>
  3355. <tr>
  3356. <td>
  3357. <code>dataFrom</code></br>
  3358. <em>
  3359. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">
  3360. []ExternalSecretDataFromRemoteRef
  3361. </a>
  3362. </em>
  3363. </td>
  3364. <td>
  3365. <em>(Optional)</em>
  3366. <p>DataFrom is used to fetch all properties from a specific Provider data
  3367. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  3368. </td>
  3369. </tr>
  3370. </table>
  3371. </td>
  3372. </tr>
  3373. <tr>
  3374. <td>
  3375. <code>status</code></br>
  3376. <em>
  3377. <a href="#external-secrets.io/v1beta1.ExternalSecretStatus">
  3378. ExternalSecretStatus
  3379. </a>
  3380. </em>
  3381. </td>
  3382. <td>
  3383. </td>
  3384. </tr>
  3385. </tbody>
  3386. </table>
  3387. <h3 id="external-secrets.io/v1beta1.ExternalSecretConditionType">ExternalSecretConditionType
  3388. (<code>string</code> alias)</p></h3>
  3389. <p>
  3390. (<em>Appears on:</em>
  3391. <a href="#external-secrets.io/v1beta1.ExternalSecretStatusCondition">ExternalSecretStatusCondition</a>)
  3392. </p>
  3393. <p>
  3394. </p>
  3395. <table>
  3396. <thead>
  3397. <tr>
  3398. <th>Value</th>
  3399. <th>Description</th>
  3400. </tr>
  3401. </thead>
  3402. <tbody><tr><td><p>&#34;Deleted&#34;</p></td>
  3403. <td></td>
  3404. </tr><tr><td><p>&#34;Ready&#34;</p></td>
  3405. <td></td>
  3406. </tr></tbody>
  3407. </table>
  3408. <h3 id="external-secrets.io/v1beta1.ExternalSecretConversionStrategy">ExternalSecretConversionStrategy
  3409. (<code>string</code> alias)</p></h3>
  3410. <p>
  3411. (<em>Appears on:</em>
  3412. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  3413. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind</a>)
  3414. </p>
  3415. <p>
  3416. </p>
  3417. <table>
  3418. <thead>
  3419. <tr>
  3420. <th>Value</th>
  3421. <th>Description</th>
  3422. </tr>
  3423. </thead>
  3424. <tbody><tr><td><p>&#34;Default&#34;</p></td>
  3425. <td></td>
  3426. </tr><tr><td><p>&#34;Unicode&#34;</p></td>
  3427. <td></td>
  3428. </tr></tbody>
  3429. </table>
  3430. <h3 id="external-secrets.io/v1beta1.ExternalSecretCreationPolicy">ExternalSecretCreationPolicy
  3431. (<code>string</code> alias)</p></h3>
  3432. <p>
  3433. (<em>Appears on:</em>
  3434. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget</a>)
  3435. </p>
  3436. <p>
  3437. <p>ExternalSecretCreationPolicy defines rules on how to create the resulting Secret.</p>
  3438. </p>
  3439. <table>
  3440. <thead>
  3441. <tr>
  3442. <th>Value</th>
  3443. <th>Description</th>
  3444. </tr>
  3445. </thead>
  3446. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  3447. <td><p>Merge does not create the Secret, but merges the data fields to the Secret.</p>
  3448. </td>
  3449. </tr><tr><td><p>&#34;None&#34;</p></td>
  3450. <td><p>None does not create a Secret (future use with injector).</p>
  3451. </td>
  3452. </tr><tr><td><p>&#34;Orphan&#34;</p></td>
  3453. <td><p>Orphan creates the Secret and does not set the ownerReference.
  3454. I.e. it will be orphaned after the deletion of the ExternalSecret.</p>
  3455. </td>
  3456. </tr><tr><td><p>&#34;Owner&#34;</p></td>
  3457. <td><p>Owner creates the Secret and sets .metadata.ownerReferences to the ExternalSecret resource.</p>
  3458. </td>
  3459. </tr></tbody>
  3460. </table>
  3461. <h3 id="external-secrets.io/v1beta1.ExternalSecretData">ExternalSecretData
  3462. </h3>
  3463. <p>
  3464. (<em>Appears on:</em>
  3465. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>)
  3466. </p>
  3467. <p>
  3468. <p>ExternalSecretData defines the connection between the Kubernetes Secret key (spec.data.<key>) and the Provider data.</p>
  3469. </p>
  3470. <table>
  3471. <thead>
  3472. <tr>
  3473. <th>Field</th>
  3474. <th>Description</th>
  3475. </tr>
  3476. </thead>
  3477. <tbody>
  3478. <tr>
  3479. <td>
  3480. <code>secretKey</code></br>
  3481. <em>
  3482. string
  3483. </em>
  3484. </td>
  3485. <td>
  3486. <p>SecretKey defines the key in which the controller stores
  3487. the value. This is the key in the Kind=Secret</p>
  3488. </td>
  3489. </tr>
  3490. <tr>
  3491. <td>
  3492. <code>remoteRef</code></br>
  3493. <em>
  3494. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">
  3495. ExternalSecretDataRemoteRef
  3496. </a>
  3497. </em>
  3498. </td>
  3499. <td>
  3500. <p>RemoteRef points to the remote secret and defines
  3501. which secret (version/property/..) to fetch.</p>
  3502. </td>
  3503. </tr>
  3504. <tr>
  3505. <td>
  3506. <code>sourceRef</code></br>
  3507. <em>
  3508. <a href="#external-secrets.io/v1beta1.StoreSourceRef">
  3509. StoreSourceRef
  3510. </a>
  3511. </em>
  3512. </td>
  3513. <td>
  3514. <p>SourceRef allows you to override the source
  3515. from which the value will pulled from.</p>
  3516. </td>
  3517. </tr>
  3518. </tbody>
  3519. </table>
  3520. <h3 id="external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef
  3521. </h3>
  3522. <p>
  3523. (<em>Appears on:</em>
  3524. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>)
  3525. </p>
  3526. <p>
  3527. </p>
  3528. <table>
  3529. <thead>
  3530. <tr>
  3531. <th>Field</th>
  3532. <th>Description</th>
  3533. </tr>
  3534. </thead>
  3535. <tbody>
  3536. <tr>
  3537. <td>
  3538. <code>extract</code></br>
  3539. <em>
  3540. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">
  3541. ExternalSecretDataRemoteRef
  3542. </a>
  3543. </em>
  3544. </td>
  3545. <td>
  3546. <em>(Optional)</em>
  3547. <p>Used to extract multiple key/value pairs from one secret
  3548. Note: Extract does not support sourceRef.Generator or sourceRef.GeneratorRef.</p>
  3549. </td>
  3550. </tr>
  3551. <tr>
  3552. <td>
  3553. <code>find</code></br>
  3554. <em>
  3555. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">
  3556. ExternalSecretFind
  3557. </a>
  3558. </em>
  3559. </td>
  3560. <td>
  3561. <em>(Optional)</em>
  3562. <p>Used to find secrets based on tags or regular expressions
  3563. Note: Find does not support sourceRef.Generator or sourceRef.GeneratorRef.</p>
  3564. </td>
  3565. </tr>
  3566. <tr>
  3567. <td>
  3568. <code>rewrite</code></br>
  3569. <em>
  3570. <a href="#external-secrets.io/v1beta1.ExternalSecretRewrite">
  3571. []ExternalSecretRewrite
  3572. </a>
  3573. </em>
  3574. </td>
  3575. <td>
  3576. <em>(Optional)</em>
  3577. <p>Used to rewrite secret Keys after getting them from the secret Provider
  3578. Multiple Rewrite operations can be provided. They are applied in a layered order (first to last)</p>
  3579. </td>
  3580. </tr>
  3581. <tr>
  3582. <td>
  3583. <code>sourceRef</code></br>
  3584. <em>
  3585. <a href="#external-secrets.io/v1beta1.StoreGeneratorSourceRef">
  3586. StoreGeneratorSourceRef
  3587. </a>
  3588. </em>
  3589. </td>
  3590. <td>
  3591. <p>SourceRef points to a store or generator
  3592. which contains secret values ready to use.
  3593. Use this in combination with Extract or Find pull values out of
  3594. a specific SecretStore.
  3595. When sourceRef points to a generator Extract or Find is not supported.
  3596. The generator returns a static map of values</p>
  3597. </td>
  3598. </tr>
  3599. </tbody>
  3600. </table>
  3601. <h3 id="external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef
  3602. </h3>
  3603. <p>
  3604. (<em>Appears on:</em>
  3605. <a href="#external-secrets.io/v1beta1.ExternalSecretData">ExternalSecretData</a>,
  3606. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  3607. </p>
  3608. <p>
  3609. <p>ExternalSecretDataRemoteRef defines Provider data location.</p>
  3610. </p>
  3611. <table>
  3612. <thead>
  3613. <tr>
  3614. <th>Field</th>
  3615. <th>Description</th>
  3616. </tr>
  3617. </thead>
  3618. <tbody>
  3619. <tr>
  3620. <td>
  3621. <code>key</code></br>
  3622. <em>
  3623. string
  3624. </em>
  3625. </td>
  3626. <td>
  3627. <p>Key is the key used in the Provider, mandatory</p>
  3628. </td>
  3629. </tr>
  3630. <tr>
  3631. <td>
  3632. <code>metadataPolicy</code></br>
  3633. <em>
  3634. <a href="#external-secrets.io/v1beta1.ExternalSecretMetadataPolicy">
  3635. ExternalSecretMetadataPolicy
  3636. </a>
  3637. </em>
  3638. </td>
  3639. <td>
  3640. <em>(Optional)</em>
  3641. <p>Policy for fetching tags/labels from provider secrets, possible options are Fetch, None. Defaults to None</p>
  3642. </td>
  3643. </tr>
  3644. <tr>
  3645. <td>
  3646. <code>property</code></br>
  3647. <em>
  3648. string
  3649. </em>
  3650. </td>
  3651. <td>
  3652. <em>(Optional)</em>
  3653. <p>Used to select a specific property of the Provider value (if a map), if supported</p>
  3654. </td>
  3655. </tr>
  3656. <tr>
  3657. <td>
  3658. <code>version</code></br>
  3659. <em>
  3660. string
  3661. </em>
  3662. </td>
  3663. <td>
  3664. <em>(Optional)</em>
  3665. <p>Used to select a specific version of the Provider value, if supported</p>
  3666. </td>
  3667. </tr>
  3668. <tr>
  3669. <td>
  3670. <code>conversionStrategy</code></br>
  3671. <em>
  3672. <a href="#external-secrets.io/v1beta1.ExternalSecretConversionStrategy">
  3673. ExternalSecretConversionStrategy
  3674. </a>
  3675. </em>
  3676. </td>
  3677. <td>
  3678. <em>(Optional)</em>
  3679. <p>Used to define a conversion Strategy</p>
  3680. </td>
  3681. </tr>
  3682. <tr>
  3683. <td>
  3684. <code>decodingStrategy</code></br>
  3685. <em>
  3686. <a href="#external-secrets.io/v1beta1.ExternalSecretDecodingStrategy">
  3687. ExternalSecretDecodingStrategy
  3688. </a>
  3689. </em>
  3690. </td>
  3691. <td>
  3692. <em>(Optional)</em>
  3693. <p>Used to define a decoding Strategy</p>
  3694. </td>
  3695. </tr>
  3696. </tbody>
  3697. </table>
  3698. <h3 id="external-secrets.io/v1beta1.ExternalSecretDecodingStrategy">ExternalSecretDecodingStrategy
  3699. (<code>string</code> alias)</p></h3>
  3700. <p>
  3701. (<em>Appears on:</em>
  3702. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  3703. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind</a>)
  3704. </p>
  3705. <p>
  3706. </p>
  3707. <table>
  3708. <thead>
  3709. <tr>
  3710. <th>Value</th>
  3711. <th>Description</th>
  3712. </tr>
  3713. </thead>
  3714. <tbody><tr><td><p>&#34;Auto&#34;</p></td>
  3715. <td></td>
  3716. </tr><tr><td><p>&#34;Base64&#34;</p></td>
  3717. <td></td>
  3718. </tr><tr><td><p>&#34;Base64URL&#34;</p></td>
  3719. <td></td>
  3720. </tr><tr><td><p>&#34;None&#34;</p></td>
  3721. <td></td>
  3722. </tr></tbody>
  3723. </table>
  3724. <h3 id="external-secrets.io/v1beta1.ExternalSecretDeletionPolicy">ExternalSecretDeletionPolicy
  3725. (<code>string</code> alias)</p></h3>
  3726. <p>
  3727. (<em>Appears on:</em>
  3728. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget</a>)
  3729. </p>
  3730. <p>
  3731. <p>ExternalSecretDeletionPolicy defines rules on how to delete the resulting Secret.</p>
  3732. </p>
  3733. <table>
  3734. <thead>
  3735. <tr>
  3736. <th>Value</th>
  3737. <th>Description</th>
  3738. </tr>
  3739. </thead>
  3740. <tbody><tr><td><p>&#34;Delete&#34;</p></td>
  3741. <td><p>Delete deletes the secret if all provider secrets are deleted.
  3742. If a secret gets deleted on the provider side and is not accessible
  3743. anymore this is not considered an error and the ExternalSecret
  3744. does not go into SecretSyncedError status.</p>
  3745. </td>
  3746. </tr><tr><td><p>&#34;Merge&#34;</p></td>
  3747. <td><p>Merge removes keys in the secret, but not the secret itself.
  3748. If a secret gets deleted on the provider side and is not accessible
  3749. anymore this is not considered an error and the ExternalSecret
  3750. does not go into SecretSyncedError status.</p>
  3751. </td>
  3752. </tr><tr><td><p>&#34;Retain&#34;</p></td>
  3753. <td><p>Retain will retain the secret if all provider secrets have been deleted.
  3754. If a provider secret does not exist the ExternalSecret gets into the
  3755. SecretSyncedError status.</p>
  3756. </td>
  3757. </tr></tbody>
  3758. </table>
  3759. <h3 id="external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind
  3760. </h3>
  3761. <p>
  3762. (<em>Appears on:</em>
  3763. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  3764. </p>
  3765. <p>
  3766. </p>
  3767. <table>
  3768. <thead>
  3769. <tr>
  3770. <th>Field</th>
  3771. <th>Description</th>
  3772. </tr>
  3773. </thead>
  3774. <tbody>
  3775. <tr>
  3776. <td>
  3777. <code>path</code></br>
  3778. <em>
  3779. string
  3780. </em>
  3781. </td>
  3782. <td>
  3783. <em>(Optional)</em>
  3784. <p>A root path to start the find operations.</p>
  3785. </td>
  3786. </tr>
  3787. <tr>
  3788. <td>
  3789. <code>name</code></br>
  3790. <em>
  3791. <a href="#external-secrets.io/v1beta1.FindName">
  3792. FindName
  3793. </a>
  3794. </em>
  3795. </td>
  3796. <td>
  3797. <em>(Optional)</em>
  3798. <p>Finds secrets based on the name.</p>
  3799. </td>
  3800. </tr>
  3801. <tr>
  3802. <td>
  3803. <code>tags</code></br>
  3804. <em>
  3805. map[string]string
  3806. </em>
  3807. </td>
  3808. <td>
  3809. <em>(Optional)</em>
  3810. <p>Find secrets based on tags.</p>
  3811. </td>
  3812. </tr>
  3813. <tr>
  3814. <td>
  3815. <code>conversionStrategy</code></br>
  3816. <em>
  3817. <a href="#external-secrets.io/v1beta1.ExternalSecretConversionStrategy">
  3818. ExternalSecretConversionStrategy
  3819. </a>
  3820. </em>
  3821. </td>
  3822. <td>
  3823. <em>(Optional)</em>
  3824. <p>Used to define a conversion Strategy</p>
  3825. </td>
  3826. </tr>
  3827. <tr>
  3828. <td>
  3829. <code>decodingStrategy</code></br>
  3830. <em>
  3831. <a href="#external-secrets.io/v1beta1.ExternalSecretDecodingStrategy">
  3832. ExternalSecretDecodingStrategy
  3833. </a>
  3834. </em>
  3835. </td>
  3836. <td>
  3837. <em>(Optional)</em>
  3838. <p>Used to define a decoding Strategy</p>
  3839. </td>
  3840. </tr>
  3841. </tbody>
  3842. </table>
  3843. <h3 id="external-secrets.io/v1beta1.ExternalSecretMetadata">ExternalSecretMetadata
  3844. </h3>
  3845. <p>
  3846. (<em>Appears on:</em>
  3847. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretSpec">ClusterExternalSecretSpec</a>)
  3848. </p>
  3849. <p>
  3850. <p>ExternalSecretMetadata defines metadata fields for the ExternalSecret generated by the ClusterExternalSecret.</p>
  3851. </p>
  3852. <table>
  3853. <thead>
  3854. <tr>
  3855. <th>Field</th>
  3856. <th>Description</th>
  3857. </tr>
  3858. </thead>
  3859. <tbody>
  3860. <tr>
  3861. <td>
  3862. <code>annotations</code></br>
  3863. <em>
  3864. map[string]string
  3865. </em>
  3866. </td>
  3867. <td>
  3868. <em>(Optional)</em>
  3869. </td>
  3870. </tr>
  3871. <tr>
  3872. <td>
  3873. <code>labels</code></br>
  3874. <em>
  3875. map[string]string
  3876. </em>
  3877. </td>
  3878. <td>
  3879. <em>(Optional)</em>
  3880. </td>
  3881. </tr>
  3882. </tbody>
  3883. </table>
  3884. <h3 id="external-secrets.io/v1beta1.ExternalSecretMetadataPolicy">ExternalSecretMetadataPolicy
  3885. (<code>string</code> alias)</p></h3>
  3886. <p>
  3887. (<em>Appears on:</em>
  3888. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>)
  3889. </p>
  3890. <p>
  3891. </p>
  3892. <table>
  3893. <thead>
  3894. <tr>
  3895. <th>Value</th>
  3896. <th>Description</th>
  3897. </tr>
  3898. </thead>
  3899. <tbody><tr><td><p>&#34;Fetch&#34;</p></td>
  3900. <td></td>
  3901. </tr><tr><td><p>&#34;None&#34;</p></td>
  3902. <td></td>
  3903. </tr></tbody>
  3904. </table>
  3905. <h3 id="external-secrets.io/v1beta1.ExternalSecretRewrite">ExternalSecretRewrite
  3906. </h3>
  3907. <p>
  3908. (<em>Appears on:</em>
  3909. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  3910. </p>
  3911. <p>
  3912. </p>
  3913. <table>
  3914. <thead>
  3915. <tr>
  3916. <th>Field</th>
  3917. <th>Description</th>
  3918. </tr>
  3919. </thead>
  3920. <tbody>
  3921. <tr>
  3922. <td>
  3923. <code>regexp</code></br>
  3924. <em>
  3925. <a href="#external-secrets.io/v1beta1.ExternalSecretRewriteRegexp">
  3926. ExternalSecretRewriteRegexp
  3927. </a>
  3928. </em>
  3929. </td>
  3930. <td>
  3931. <em>(Optional)</em>
  3932. <p>Used to rewrite with regular expressions.
  3933. The resulting key will be the output of a regexp.ReplaceAll operation.</p>
  3934. </td>
  3935. </tr>
  3936. <tr>
  3937. <td>
  3938. <code>transform</code></br>
  3939. <em>
  3940. <a href="#external-secrets.io/v1beta1.ExternalSecretRewriteTransform">
  3941. ExternalSecretRewriteTransform
  3942. </a>
  3943. </em>
  3944. </td>
  3945. <td>
  3946. <em>(Optional)</em>
  3947. <p>Used to apply string transformation on the secrets.
  3948. The resulting key will be the output of the template applied by the operation.</p>
  3949. </td>
  3950. </tr>
  3951. </tbody>
  3952. </table>
  3953. <h3 id="external-secrets.io/v1beta1.ExternalSecretRewriteRegexp">ExternalSecretRewriteRegexp
  3954. </h3>
  3955. <p>
  3956. (<em>Appears on:</em>
  3957. <a href="#external-secrets.io/v1beta1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  3958. </p>
  3959. <p>
  3960. </p>
  3961. <table>
  3962. <thead>
  3963. <tr>
  3964. <th>Field</th>
  3965. <th>Description</th>
  3966. </tr>
  3967. </thead>
  3968. <tbody>
  3969. <tr>
  3970. <td>
  3971. <code>source</code></br>
  3972. <em>
  3973. string
  3974. </em>
  3975. </td>
  3976. <td>
  3977. <p>Used to define the regular expression of a re.Compiler.</p>
  3978. </td>
  3979. </tr>
  3980. <tr>
  3981. <td>
  3982. <code>target</code></br>
  3983. <em>
  3984. string
  3985. </em>
  3986. </td>
  3987. <td>
  3988. <p>Used to define the target pattern of a ReplaceAll operation.</p>
  3989. </td>
  3990. </tr>
  3991. </tbody>
  3992. </table>
  3993. <h3 id="external-secrets.io/v1beta1.ExternalSecretRewriteTransform">ExternalSecretRewriteTransform
  3994. </h3>
  3995. <p>
  3996. (<em>Appears on:</em>
  3997. <a href="#external-secrets.io/v1beta1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  3998. </p>
  3999. <p>
  4000. </p>
  4001. <table>
  4002. <thead>
  4003. <tr>
  4004. <th>Field</th>
  4005. <th>Description</th>
  4006. </tr>
  4007. </thead>
  4008. <tbody>
  4009. <tr>
  4010. <td>
  4011. <code>template</code></br>
  4012. <em>
  4013. string
  4014. </em>
  4015. </td>
  4016. <td>
  4017. <p>Used to define the template to apply on the secret name.
  4018. <code>.value</code> will specify the secret name in the template.</p>
  4019. </td>
  4020. </tr>
  4021. </tbody>
  4022. </table>
  4023. <h3 id="external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec
  4024. </h3>
  4025. <p>
  4026. (<em>Appears on:</em>
  4027. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretSpec">ClusterExternalSecretSpec</a>,
  4028. <a href="#external-secrets.io/v1beta1.ExternalSecret">ExternalSecret</a>)
  4029. </p>
  4030. <p>
  4031. <p>ExternalSecretSpec defines the desired state of ExternalSecret.</p>
  4032. </p>
  4033. <table>
  4034. <thead>
  4035. <tr>
  4036. <th>Field</th>
  4037. <th>Description</th>
  4038. </tr>
  4039. </thead>
  4040. <tbody>
  4041. <tr>
  4042. <td>
  4043. <code>secretStoreRef</code></br>
  4044. <em>
  4045. <a href="#external-secrets.io/v1beta1.SecretStoreRef">
  4046. SecretStoreRef
  4047. </a>
  4048. </em>
  4049. </td>
  4050. <td>
  4051. <em>(Optional)</em>
  4052. </td>
  4053. </tr>
  4054. <tr>
  4055. <td>
  4056. <code>target</code></br>
  4057. <em>
  4058. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">
  4059. ExternalSecretTarget
  4060. </a>
  4061. </em>
  4062. </td>
  4063. <td>
  4064. <em>(Optional)</em>
  4065. </td>
  4066. </tr>
  4067. <tr>
  4068. <td>
  4069. <code>refreshInterval</code></br>
  4070. <em>
  4071. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  4072. Kubernetes meta/v1.Duration
  4073. </a>
  4074. </em>
  4075. </td>
  4076. <td>
  4077. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider
  4078. Valid time units are &ldquo;ns&rdquo;, &ldquo;us&rdquo; (or &ldquo;µs&rdquo;), &ldquo;ms&rdquo;, &ldquo;s&rdquo;, &ldquo;m&rdquo;, &ldquo;h&rdquo;
  4079. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  4080. </td>
  4081. </tr>
  4082. <tr>
  4083. <td>
  4084. <code>data</code></br>
  4085. <em>
  4086. <a href="#external-secrets.io/v1beta1.ExternalSecretData">
  4087. []ExternalSecretData
  4088. </a>
  4089. </em>
  4090. </td>
  4091. <td>
  4092. <em>(Optional)</em>
  4093. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  4094. </td>
  4095. </tr>
  4096. <tr>
  4097. <td>
  4098. <code>dataFrom</code></br>
  4099. <em>
  4100. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">
  4101. []ExternalSecretDataFromRemoteRef
  4102. </a>
  4103. </em>
  4104. </td>
  4105. <td>
  4106. <em>(Optional)</em>
  4107. <p>DataFrom is used to fetch all properties from a specific Provider data
  4108. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  4109. </td>
  4110. </tr>
  4111. </tbody>
  4112. </table>
  4113. <h3 id="external-secrets.io/v1beta1.ExternalSecretStatus">ExternalSecretStatus
  4114. </h3>
  4115. <p>
  4116. (<em>Appears on:</em>
  4117. <a href="#external-secrets.io/v1beta1.ExternalSecret">ExternalSecret</a>)
  4118. </p>
  4119. <p>
  4120. </p>
  4121. <table>
  4122. <thead>
  4123. <tr>
  4124. <th>Field</th>
  4125. <th>Description</th>
  4126. </tr>
  4127. </thead>
  4128. <tbody>
  4129. <tr>
  4130. <td>
  4131. <code>refreshTime</code></br>
  4132. <em>
  4133. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  4134. Kubernetes meta/v1.Time
  4135. </a>
  4136. </em>
  4137. </td>
  4138. <td>
  4139. <p>refreshTime is the time and date the external secret was fetched and
  4140. the target secret updated</p>
  4141. </td>
  4142. </tr>
  4143. <tr>
  4144. <td>
  4145. <code>syncedResourceVersion</code></br>
  4146. <em>
  4147. string
  4148. </em>
  4149. </td>
  4150. <td>
  4151. <p>SyncedResourceVersion keeps track of the last synced version</p>
  4152. </td>
  4153. </tr>
  4154. <tr>
  4155. <td>
  4156. <code>conditions</code></br>
  4157. <em>
  4158. <a href="#external-secrets.io/v1beta1.ExternalSecretStatusCondition">
  4159. []ExternalSecretStatusCondition
  4160. </a>
  4161. </em>
  4162. </td>
  4163. <td>
  4164. <em>(Optional)</em>
  4165. </td>
  4166. </tr>
  4167. <tr>
  4168. <td>
  4169. <code>binding</code></br>
  4170. <em>
  4171. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#localobjectreference-v1-core">
  4172. Kubernetes core/v1.LocalObjectReference
  4173. </a>
  4174. </em>
  4175. </td>
  4176. <td>
  4177. <p>Binding represents a servicebinding.io Provisioned Service reference to the secret</p>
  4178. </td>
  4179. </tr>
  4180. </tbody>
  4181. </table>
  4182. <h3 id="external-secrets.io/v1beta1.ExternalSecretStatusCondition">ExternalSecretStatusCondition
  4183. </h3>
  4184. <p>
  4185. (<em>Appears on:</em>
  4186. <a href="#external-secrets.io/v1beta1.ExternalSecretStatus">ExternalSecretStatus</a>)
  4187. </p>
  4188. <p>
  4189. </p>
  4190. <table>
  4191. <thead>
  4192. <tr>
  4193. <th>Field</th>
  4194. <th>Description</th>
  4195. </tr>
  4196. </thead>
  4197. <tbody>
  4198. <tr>
  4199. <td>
  4200. <code>type</code></br>
  4201. <em>
  4202. <a href="#external-secrets.io/v1beta1.ExternalSecretConditionType">
  4203. ExternalSecretConditionType
  4204. </a>
  4205. </em>
  4206. </td>
  4207. <td>
  4208. </td>
  4209. </tr>
  4210. <tr>
  4211. <td>
  4212. <code>status</code></br>
  4213. <em>
  4214. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  4215. Kubernetes core/v1.ConditionStatus
  4216. </a>
  4217. </em>
  4218. </td>
  4219. <td>
  4220. </td>
  4221. </tr>
  4222. <tr>
  4223. <td>
  4224. <code>reason</code></br>
  4225. <em>
  4226. string
  4227. </em>
  4228. </td>
  4229. <td>
  4230. <em>(Optional)</em>
  4231. </td>
  4232. </tr>
  4233. <tr>
  4234. <td>
  4235. <code>message</code></br>
  4236. <em>
  4237. string
  4238. </em>
  4239. </td>
  4240. <td>
  4241. <em>(Optional)</em>
  4242. </td>
  4243. </tr>
  4244. <tr>
  4245. <td>
  4246. <code>lastTransitionTime</code></br>
  4247. <em>
  4248. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  4249. Kubernetes meta/v1.Time
  4250. </a>
  4251. </em>
  4252. </td>
  4253. <td>
  4254. <em>(Optional)</em>
  4255. </td>
  4256. </tr>
  4257. </tbody>
  4258. </table>
  4259. <h3 id="external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget
  4260. </h3>
  4261. <p>
  4262. (<em>Appears on:</em>
  4263. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>)
  4264. </p>
  4265. <p>
  4266. <p>ExternalSecretTarget defines the Kubernetes Secret to be created
  4267. There can be only one target per ExternalSecret.</p>
  4268. </p>
  4269. <table>
  4270. <thead>
  4271. <tr>
  4272. <th>Field</th>
  4273. <th>Description</th>
  4274. </tr>
  4275. </thead>
  4276. <tbody>
  4277. <tr>
  4278. <td>
  4279. <code>name</code></br>
  4280. <em>
  4281. string
  4282. </em>
  4283. </td>
  4284. <td>
  4285. <em>(Optional)</em>
  4286. <p>Name defines the name of the Secret resource to be managed
  4287. This field is immutable
  4288. Defaults to the .metadata.name of the ExternalSecret resource</p>
  4289. </td>
  4290. </tr>
  4291. <tr>
  4292. <td>
  4293. <code>creationPolicy</code></br>
  4294. <em>
  4295. <a href="#external-secrets.io/v1beta1.ExternalSecretCreationPolicy">
  4296. ExternalSecretCreationPolicy
  4297. </a>
  4298. </em>
  4299. </td>
  4300. <td>
  4301. <em>(Optional)</em>
  4302. <p>CreationPolicy defines rules on how to create the resulting Secret
  4303. Defaults to &lsquo;Owner&rsquo;</p>
  4304. </td>
  4305. </tr>
  4306. <tr>
  4307. <td>
  4308. <code>deletionPolicy</code></br>
  4309. <em>
  4310. <a href="#external-secrets.io/v1beta1.ExternalSecretDeletionPolicy">
  4311. ExternalSecretDeletionPolicy
  4312. </a>
  4313. </em>
  4314. </td>
  4315. <td>
  4316. <em>(Optional)</em>
  4317. <p>DeletionPolicy defines rules on how to delete the resulting Secret
  4318. Defaults to &lsquo;Retain&rsquo;</p>
  4319. </td>
  4320. </tr>
  4321. <tr>
  4322. <td>
  4323. <code>template</code></br>
  4324. <em>
  4325. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">
  4326. ExternalSecretTemplate
  4327. </a>
  4328. </em>
  4329. </td>
  4330. <td>
  4331. <em>(Optional)</em>
  4332. <p>Template defines a blueprint for the created Secret resource.</p>
  4333. </td>
  4334. </tr>
  4335. <tr>
  4336. <td>
  4337. <code>immutable</code></br>
  4338. <em>
  4339. bool
  4340. </em>
  4341. </td>
  4342. <td>
  4343. <em>(Optional)</em>
  4344. <p>Immutable defines if the final secret will be immutable</p>
  4345. </td>
  4346. </tr>
  4347. </tbody>
  4348. </table>
  4349. <h3 id="external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate
  4350. </h3>
  4351. <p>
  4352. (<em>Appears on:</em>
  4353. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget</a>)
  4354. </p>
  4355. <p>
  4356. <p>ExternalSecretTemplate defines a blueprint for the created Secret resource.
  4357. we can not use native corev1.Secret, it will have empty ObjectMeta values: <a href="https://github.com/kubernetes-sigs/controller-tools/issues/448">https://github.com/kubernetes-sigs/controller-tools/issues/448</a></p>
  4358. </p>
  4359. <table>
  4360. <thead>
  4361. <tr>
  4362. <th>Field</th>
  4363. <th>Description</th>
  4364. </tr>
  4365. </thead>
  4366. <tbody>
  4367. <tr>
  4368. <td>
  4369. <code>type</code></br>
  4370. <em>
  4371. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#secrettype-v1-core">
  4372. Kubernetes core/v1.SecretType
  4373. </a>
  4374. </em>
  4375. </td>
  4376. <td>
  4377. <em>(Optional)</em>
  4378. </td>
  4379. </tr>
  4380. <tr>
  4381. <td>
  4382. <code>engineVersion</code></br>
  4383. <em>
  4384. <a href="#external-secrets.io/v1beta1.TemplateEngineVersion">
  4385. TemplateEngineVersion
  4386. </a>
  4387. </em>
  4388. </td>
  4389. <td>
  4390. <p>EngineVersion specifies the template engine version
  4391. that should be used to compile/execute the
  4392. template specified in .data and .templateFrom[].</p>
  4393. </td>
  4394. </tr>
  4395. <tr>
  4396. <td>
  4397. <code>metadata</code></br>
  4398. <em>
  4399. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplateMetadata">
  4400. ExternalSecretTemplateMetadata
  4401. </a>
  4402. </em>
  4403. </td>
  4404. <td>
  4405. <em>(Optional)</em>
  4406. </td>
  4407. </tr>
  4408. <tr>
  4409. <td>
  4410. <code>mergePolicy</code></br>
  4411. <em>
  4412. <a href="#external-secrets.io/v1beta1.TemplateMergePolicy">
  4413. TemplateMergePolicy
  4414. </a>
  4415. </em>
  4416. </td>
  4417. <td>
  4418. </td>
  4419. </tr>
  4420. <tr>
  4421. <td>
  4422. <code>data</code></br>
  4423. <em>
  4424. map[string]string
  4425. </em>
  4426. </td>
  4427. <td>
  4428. <em>(Optional)</em>
  4429. </td>
  4430. </tr>
  4431. <tr>
  4432. <td>
  4433. <code>templateFrom</code></br>
  4434. <em>
  4435. <a href="#external-secrets.io/v1beta1.TemplateFrom">
  4436. []TemplateFrom
  4437. </a>
  4438. </em>
  4439. </td>
  4440. <td>
  4441. <em>(Optional)</em>
  4442. </td>
  4443. </tr>
  4444. </tbody>
  4445. </table>
  4446. <h3 id="external-secrets.io/v1beta1.ExternalSecretTemplateMetadata">ExternalSecretTemplateMetadata
  4447. </h3>
  4448. <p>
  4449. (<em>Appears on:</em>
  4450. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  4451. </p>
  4452. <p>
  4453. <p>ExternalSecretTemplateMetadata defines metadata fields for the Secret blueprint.</p>
  4454. </p>
  4455. <table>
  4456. <thead>
  4457. <tr>
  4458. <th>Field</th>
  4459. <th>Description</th>
  4460. </tr>
  4461. </thead>
  4462. <tbody>
  4463. <tr>
  4464. <td>
  4465. <code>annotations</code></br>
  4466. <em>
  4467. map[string]string
  4468. </em>
  4469. </td>
  4470. <td>
  4471. <em>(Optional)</em>
  4472. </td>
  4473. </tr>
  4474. <tr>
  4475. <td>
  4476. <code>labels</code></br>
  4477. <em>
  4478. map[string]string
  4479. </em>
  4480. </td>
  4481. <td>
  4482. <em>(Optional)</em>
  4483. </td>
  4484. </tr>
  4485. </tbody>
  4486. </table>
  4487. <h3 id="external-secrets.io/v1beta1.ExternalSecretValidator">ExternalSecretValidator
  4488. </h3>
  4489. <p>
  4490. </p>
  4491. <h3 id="external-secrets.io/v1beta1.FakeProvider">FakeProvider
  4492. </h3>
  4493. <p>
  4494. (<em>Appears on:</em>
  4495. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  4496. </p>
  4497. <p>
  4498. <p>FakeProvider configures a fake provider that returns static values.</p>
  4499. </p>
  4500. <table>
  4501. <thead>
  4502. <tr>
  4503. <th>Field</th>
  4504. <th>Description</th>
  4505. </tr>
  4506. </thead>
  4507. <tbody>
  4508. <tr>
  4509. <td>
  4510. <code>data</code></br>
  4511. <em>
  4512. <a href="#external-secrets.io/v1beta1.FakeProviderData">
  4513. []FakeProviderData
  4514. </a>
  4515. </em>
  4516. </td>
  4517. <td>
  4518. </td>
  4519. </tr>
  4520. </tbody>
  4521. </table>
  4522. <h3 id="external-secrets.io/v1beta1.FakeProviderData">FakeProviderData
  4523. </h3>
  4524. <p>
  4525. (<em>Appears on:</em>
  4526. <a href="#external-secrets.io/v1beta1.FakeProvider">FakeProvider</a>)
  4527. </p>
  4528. <p>
  4529. </p>
  4530. <table>
  4531. <thead>
  4532. <tr>
  4533. <th>Field</th>
  4534. <th>Description</th>
  4535. </tr>
  4536. </thead>
  4537. <tbody>
  4538. <tr>
  4539. <td>
  4540. <code>key</code></br>
  4541. <em>
  4542. string
  4543. </em>
  4544. </td>
  4545. <td>
  4546. </td>
  4547. </tr>
  4548. <tr>
  4549. <td>
  4550. <code>value</code></br>
  4551. <em>
  4552. string
  4553. </em>
  4554. </td>
  4555. <td>
  4556. </td>
  4557. </tr>
  4558. <tr>
  4559. <td>
  4560. <code>valueMap</code></br>
  4561. <em>
  4562. map[string]string
  4563. </em>
  4564. </td>
  4565. <td>
  4566. <p>Deprecated: ValueMap is deprecated and is intended to be removed in the future, use the <code>value</code> field instead.</p>
  4567. </td>
  4568. </tr>
  4569. <tr>
  4570. <td>
  4571. <code>version</code></br>
  4572. <em>
  4573. string
  4574. </em>
  4575. </td>
  4576. <td>
  4577. </td>
  4578. </tr>
  4579. </tbody>
  4580. </table>
  4581. <h3 id="external-secrets.io/v1beta1.FindName">FindName
  4582. </h3>
  4583. <p>
  4584. (<em>Appears on:</em>
  4585. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind</a>)
  4586. </p>
  4587. <p>
  4588. </p>
  4589. <table>
  4590. <thead>
  4591. <tr>
  4592. <th>Field</th>
  4593. <th>Description</th>
  4594. </tr>
  4595. </thead>
  4596. <tbody>
  4597. <tr>
  4598. <td>
  4599. <code>regexp</code></br>
  4600. <em>
  4601. string
  4602. </em>
  4603. </td>
  4604. <td>
  4605. <em>(Optional)</em>
  4606. <p>Finds secrets base</p>
  4607. </td>
  4608. </tr>
  4609. </tbody>
  4610. </table>
  4611. <h3 id="external-secrets.io/v1beta1.GCPSMAuth">GCPSMAuth
  4612. </h3>
  4613. <p>
  4614. (<em>Appears on:</em>
  4615. <a href="#external-secrets.io/v1beta1.GCPSMProvider">GCPSMProvider</a>)
  4616. </p>
  4617. <p>
  4618. </p>
  4619. <table>
  4620. <thead>
  4621. <tr>
  4622. <th>Field</th>
  4623. <th>Description</th>
  4624. </tr>
  4625. </thead>
  4626. <tbody>
  4627. <tr>
  4628. <td>
  4629. <code>secretRef</code></br>
  4630. <em>
  4631. <a href="#external-secrets.io/v1beta1.GCPSMAuthSecretRef">
  4632. GCPSMAuthSecretRef
  4633. </a>
  4634. </em>
  4635. </td>
  4636. <td>
  4637. <em>(Optional)</em>
  4638. </td>
  4639. </tr>
  4640. <tr>
  4641. <td>
  4642. <code>workloadIdentity</code></br>
  4643. <em>
  4644. <a href="#external-secrets.io/v1beta1.GCPWorkloadIdentity">
  4645. GCPWorkloadIdentity
  4646. </a>
  4647. </em>
  4648. </td>
  4649. <td>
  4650. <em>(Optional)</em>
  4651. </td>
  4652. </tr>
  4653. </tbody>
  4654. </table>
  4655. <h3 id="external-secrets.io/v1beta1.GCPSMAuthSecretRef">GCPSMAuthSecretRef
  4656. </h3>
  4657. <p>
  4658. (<em>Appears on:</em>
  4659. <a href="#external-secrets.io/v1beta1.GCPSMAuth">GCPSMAuth</a>)
  4660. </p>
  4661. <p>
  4662. </p>
  4663. <table>
  4664. <thead>
  4665. <tr>
  4666. <th>Field</th>
  4667. <th>Description</th>
  4668. </tr>
  4669. </thead>
  4670. <tbody>
  4671. <tr>
  4672. <td>
  4673. <code>secretAccessKeySecretRef</code></br>
  4674. <em>
  4675. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4676. External Secrets meta/v1.SecretKeySelector
  4677. </a>
  4678. </em>
  4679. </td>
  4680. <td>
  4681. <em>(Optional)</em>
  4682. <p>The SecretAccessKey is used for authentication</p>
  4683. </td>
  4684. </tr>
  4685. </tbody>
  4686. </table>
  4687. <h3 id="external-secrets.io/v1beta1.GCPSMProvider">GCPSMProvider
  4688. </h3>
  4689. <p>
  4690. (<em>Appears on:</em>
  4691. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  4692. </p>
  4693. <p>
  4694. <p>GCPSMProvider Configures a store to sync secrets using the GCP Secret Manager provider.</p>
  4695. </p>
  4696. <table>
  4697. <thead>
  4698. <tr>
  4699. <th>Field</th>
  4700. <th>Description</th>
  4701. </tr>
  4702. </thead>
  4703. <tbody>
  4704. <tr>
  4705. <td>
  4706. <code>auth</code></br>
  4707. <em>
  4708. <a href="#external-secrets.io/v1beta1.GCPSMAuth">
  4709. GCPSMAuth
  4710. </a>
  4711. </em>
  4712. </td>
  4713. <td>
  4714. <em>(Optional)</em>
  4715. <p>Auth defines the information necessary to authenticate against GCP</p>
  4716. </td>
  4717. </tr>
  4718. <tr>
  4719. <td>
  4720. <code>projectID</code></br>
  4721. <em>
  4722. string
  4723. </em>
  4724. </td>
  4725. <td>
  4726. <p>ProjectID project where secret is located</p>
  4727. </td>
  4728. </tr>
  4729. </tbody>
  4730. </table>
  4731. <h3 id="external-secrets.io/v1beta1.GCPWorkloadIdentity">GCPWorkloadIdentity
  4732. </h3>
  4733. <p>
  4734. (<em>Appears on:</em>
  4735. <a href="#external-secrets.io/v1beta1.GCPSMAuth">GCPSMAuth</a>)
  4736. </p>
  4737. <p>
  4738. </p>
  4739. <table>
  4740. <thead>
  4741. <tr>
  4742. <th>Field</th>
  4743. <th>Description</th>
  4744. </tr>
  4745. </thead>
  4746. <tbody>
  4747. <tr>
  4748. <td>
  4749. <code>serviceAccountRef</code></br>
  4750. <em>
  4751. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  4752. External Secrets meta/v1.ServiceAccountSelector
  4753. </a>
  4754. </em>
  4755. </td>
  4756. <td>
  4757. </td>
  4758. </tr>
  4759. <tr>
  4760. <td>
  4761. <code>clusterLocation</code></br>
  4762. <em>
  4763. string
  4764. </em>
  4765. </td>
  4766. <td>
  4767. </td>
  4768. </tr>
  4769. <tr>
  4770. <td>
  4771. <code>clusterName</code></br>
  4772. <em>
  4773. string
  4774. </em>
  4775. </td>
  4776. <td>
  4777. </td>
  4778. </tr>
  4779. <tr>
  4780. <td>
  4781. <code>clusterProjectID</code></br>
  4782. <em>
  4783. string
  4784. </em>
  4785. </td>
  4786. <td>
  4787. </td>
  4788. </tr>
  4789. </tbody>
  4790. </table>
  4791. <h3 id="external-secrets.io/v1beta1.GeneratorRef">GeneratorRef
  4792. </h3>
  4793. <p>
  4794. (<em>Appears on:</em>
  4795. <a href="#external-secrets.io/v1beta1.StoreGeneratorSourceRef">StoreGeneratorSourceRef</a>,
  4796. <a href="#external-secrets.io/v1beta1.StoreSourceRef">StoreSourceRef</a>)
  4797. </p>
  4798. <p>
  4799. <p>GeneratorRef points to a generator custom resource.</p>
  4800. </p>
  4801. <table>
  4802. <thead>
  4803. <tr>
  4804. <th>Field</th>
  4805. <th>Description</th>
  4806. </tr>
  4807. </thead>
  4808. <tbody>
  4809. <tr>
  4810. <td>
  4811. <code>apiVersion</code></br>
  4812. <em>
  4813. string
  4814. </em>
  4815. </td>
  4816. <td>
  4817. <p>Specify the apiVersion of the generator resource</p>
  4818. </td>
  4819. </tr>
  4820. <tr>
  4821. <td>
  4822. <code>kind</code></br>
  4823. <em>
  4824. string
  4825. </em>
  4826. </td>
  4827. <td>
  4828. <p>Specify the Kind of the resource, e.g. Password, ACRAccessToken etc.</p>
  4829. </td>
  4830. </tr>
  4831. <tr>
  4832. <td>
  4833. <code>name</code></br>
  4834. <em>
  4835. string
  4836. </em>
  4837. </td>
  4838. <td>
  4839. <p>Specify the name of the generator resource</p>
  4840. </td>
  4841. </tr>
  4842. </tbody>
  4843. </table>
  4844. <h3 id="external-secrets.io/v1beta1.GenericStore">GenericStore
  4845. </h3>
  4846. <p>
  4847. <p>GenericStore is a common interface for interacting with ClusterSecretStore
  4848. or a namespaced SecretStore.</p>
  4849. </p>
  4850. <h3 id="external-secrets.io/v1beta1.GenericStoreValidator">GenericStoreValidator
  4851. </h3>
  4852. <p>
  4853. </p>
  4854. <h3 id="external-secrets.io/v1beta1.GitlabAuth">GitlabAuth
  4855. </h3>
  4856. <p>
  4857. (<em>Appears on:</em>
  4858. <a href="#external-secrets.io/v1beta1.GitlabProvider">GitlabProvider</a>)
  4859. </p>
  4860. <p>
  4861. </p>
  4862. <table>
  4863. <thead>
  4864. <tr>
  4865. <th>Field</th>
  4866. <th>Description</th>
  4867. </tr>
  4868. </thead>
  4869. <tbody>
  4870. <tr>
  4871. <td>
  4872. <code>SecretRef</code></br>
  4873. <em>
  4874. <a href="#external-secrets.io/v1beta1.GitlabSecretRef">
  4875. GitlabSecretRef
  4876. </a>
  4877. </em>
  4878. </td>
  4879. <td>
  4880. </td>
  4881. </tr>
  4882. </tbody>
  4883. </table>
  4884. <h3 id="external-secrets.io/v1beta1.GitlabProvider">GitlabProvider
  4885. </h3>
  4886. <p>
  4887. (<em>Appears on:</em>
  4888. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  4889. </p>
  4890. <p>
  4891. <p>Configures a store to sync secrets with a GitLab instance.</p>
  4892. </p>
  4893. <table>
  4894. <thead>
  4895. <tr>
  4896. <th>Field</th>
  4897. <th>Description</th>
  4898. </tr>
  4899. </thead>
  4900. <tbody>
  4901. <tr>
  4902. <td>
  4903. <code>url</code></br>
  4904. <em>
  4905. string
  4906. </em>
  4907. </td>
  4908. <td>
  4909. <p>URL configures the GitLab instance URL. Defaults to <a href="https://gitlab.com/">https://gitlab.com/</a>.</p>
  4910. </td>
  4911. </tr>
  4912. <tr>
  4913. <td>
  4914. <code>auth</code></br>
  4915. <em>
  4916. <a href="#external-secrets.io/v1beta1.GitlabAuth">
  4917. GitlabAuth
  4918. </a>
  4919. </em>
  4920. </td>
  4921. <td>
  4922. <p>Auth configures how secret-manager authenticates with a GitLab instance.</p>
  4923. </td>
  4924. </tr>
  4925. <tr>
  4926. <td>
  4927. <code>projectID</code></br>
  4928. <em>
  4929. string
  4930. </em>
  4931. </td>
  4932. <td>
  4933. <p>ProjectID specifies a project where secrets are located.</p>
  4934. </td>
  4935. </tr>
  4936. <tr>
  4937. <td>
  4938. <code>inheritFromGroups</code></br>
  4939. <em>
  4940. bool
  4941. </em>
  4942. </td>
  4943. <td>
  4944. <p>InheritFromGroups specifies whether parent groups should be discovered and checked for secrets.</p>
  4945. </td>
  4946. </tr>
  4947. <tr>
  4948. <td>
  4949. <code>groupIDs</code></br>
  4950. <em>
  4951. []string
  4952. </em>
  4953. </td>
  4954. <td>
  4955. <p>GroupIDs specify, which gitlab groups to pull secrets from. Group secrets are read from left to right followed by the project variables.</p>
  4956. </td>
  4957. </tr>
  4958. <tr>
  4959. <td>
  4960. <code>environment</code></br>
  4961. <em>
  4962. string
  4963. </em>
  4964. </td>
  4965. <td>
  4966. <p>Environment environment_scope of gitlab CI/CD variables (Please see <a href="https://docs.gitlab.com/ee/ci/environments/#create-a-static-environment">https://docs.gitlab.com/ee/ci/environments/#create-a-static-environment</a> on how to create environments)</p>
  4967. </td>
  4968. </tr>
  4969. </tbody>
  4970. </table>
  4971. <h3 id="external-secrets.io/v1beta1.GitlabSecretRef">GitlabSecretRef
  4972. </h3>
  4973. <p>
  4974. (<em>Appears on:</em>
  4975. <a href="#external-secrets.io/v1beta1.GitlabAuth">GitlabAuth</a>)
  4976. </p>
  4977. <p>
  4978. </p>
  4979. <table>
  4980. <thead>
  4981. <tr>
  4982. <th>Field</th>
  4983. <th>Description</th>
  4984. </tr>
  4985. </thead>
  4986. <tbody>
  4987. <tr>
  4988. <td>
  4989. <code>accessToken</code></br>
  4990. <em>
  4991. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4992. External Secrets meta/v1.SecretKeySelector
  4993. </a>
  4994. </em>
  4995. </td>
  4996. <td>
  4997. <p>AccessToken is used for authentication.</p>
  4998. </td>
  4999. </tr>
  5000. </tbody>
  5001. </table>
  5002. <h3 id="external-secrets.io/v1beta1.IBMAuth">IBMAuth
  5003. </h3>
  5004. <p>
  5005. (<em>Appears on:</em>
  5006. <a href="#external-secrets.io/v1beta1.IBMProvider">IBMProvider</a>)
  5007. </p>
  5008. <p>
  5009. </p>
  5010. <table>
  5011. <thead>
  5012. <tr>
  5013. <th>Field</th>
  5014. <th>Description</th>
  5015. </tr>
  5016. </thead>
  5017. <tbody>
  5018. <tr>
  5019. <td>
  5020. <code>secretRef</code></br>
  5021. <em>
  5022. <a href="#external-secrets.io/v1beta1.IBMAuthSecretRef">
  5023. IBMAuthSecretRef
  5024. </a>
  5025. </em>
  5026. </td>
  5027. <td>
  5028. </td>
  5029. </tr>
  5030. <tr>
  5031. <td>
  5032. <code>containerAuth</code></br>
  5033. <em>
  5034. <a href="#external-secrets.io/v1beta1.IBMAuthContainerAuth">
  5035. IBMAuthContainerAuth
  5036. </a>
  5037. </em>
  5038. </td>
  5039. <td>
  5040. </td>
  5041. </tr>
  5042. </tbody>
  5043. </table>
  5044. <h3 id="external-secrets.io/v1beta1.IBMAuthContainerAuth">IBMAuthContainerAuth
  5045. </h3>
  5046. <p>
  5047. (<em>Appears on:</em>
  5048. <a href="#external-secrets.io/v1beta1.IBMAuth">IBMAuth</a>)
  5049. </p>
  5050. <p>
  5051. <p>IBM Container-based auth with IAM Trusted Profile.</p>
  5052. </p>
  5053. <table>
  5054. <thead>
  5055. <tr>
  5056. <th>Field</th>
  5057. <th>Description</th>
  5058. </tr>
  5059. </thead>
  5060. <tbody>
  5061. <tr>
  5062. <td>
  5063. <code>profile</code></br>
  5064. <em>
  5065. string
  5066. </em>
  5067. </td>
  5068. <td>
  5069. <p>the IBM Trusted Profile</p>
  5070. </td>
  5071. </tr>
  5072. <tr>
  5073. <td>
  5074. <code>tokenLocation</code></br>
  5075. <em>
  5076. string
  5077. </em>
  5078. </td>
  5079. <td>
  5080. <p>Location the token is mounted on the pod</p>
  5081. </td>
  5082. </tr>
  5083. <tr>
  5084. <td>
  5085. <code>iamEndpoint</code></br>
  5086. <em>
  5087. string
  5088. </em>
  5089. </td>
  5090. <td>
  5091. </td>
  5092. </tr>
  5093. </tbody>
  5094. </table>
  5095. <h3 id="external-secrets.io/v1beta1.IBMAuthSecretRef">IBMAuthSecretRef
  5096. </h3>
  5097. <p>
  5098. (<em>Appears on:</em>
  5099. <a href="#external-secrets.io/v1beta1.IBMAuth">IBMAuth</a>)
  5100. </p>
  5101. <p>
  5102. </p>
  5103. <table>
  5104. <thead>
  5105. <tr>
  5106. <th>Field</th>
  5107. <th>Description</th>
  5108. </tr>
  5109. </thead>
  5110. <tbody>
  5111. <tr>
  5112. <td>
  5113. <code>secretApiKeySecretRef</code></br>
  5114. <em>
  5115. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5116. External Secrets meta/v1.SecretKeySelector
  5117. </a>
  5118. </em>
  5119. </td>
  5120. <td>
  5121. <p>The SecretAccessKey is used for authentication</p>
  5122. </td>
  5123. </tr>
  5124. </tbody>
  5125. </table>
  5126. <h3 id="external-secrets.io/v1beta1.IBMProvider">IBMProvider
  5127. </h3>
  5128. <p>
  5129. (<em>Appears on:</em>
  5130. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5131. </p>
  5132. <p>
  5133. <p>Configures an store to sync secrets using a IBM Cloud Secrets Manager
  5134. backend.</p>
  5135. </p>
  5136. <table>
  5137. <thead>
  5138. <tr>
  5139. <th>Field</th>
  5140. <th>Description</th>
  5141. </tr>
  5142. </thead>
  5143. <tbody>
  5144. <tr>
  5145. <td>
  5146. <code>auth</code></br>
  5147. <em>
  5148. <a href="#external-secrets.io/v1beta1.IBMAuth">
  5149. IBMAuth
  5150. </a>
  5151. </em>
  5152. </td>
  5153. <td>
  5154. <p>Auth configures how secret-manager authenticates with the IBM secrets manager.</p>
  5155. </td>
  5156. </tr>
  5157. <tr>
  5158. <td>
  5159. <code>serviceUrl</code></br>
  5160. <em>
  5161. string
  5162. </em>
  5163. </td>
  5164. <td>
  5165. <p>ServiceURL is the Endpoint URL that is specific to the Secrets Manager service instance</p>
  5166. </td>
  5167. </tr>
  5168. </tbody>
  5169. </table>
  5170. <h3 id="external-secrets.io/v1beta1.KeeperSecurityProvider">KeeperSecurityProvider
  5171. </h3>
  5172. <p>
  5173. (<em>Appears on:</em>
  5174. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5175. </p>
  5176. <p>
  5177. <p>KeeperSecurityProvider Configures a store to sync secrets using Keeper Security.</p>
  5178. </p>
  5179. <table>
  5180. <thead>
  5181. <tr>
  5182. <th>Field</th>
  5183. <th>Description</th>
  5184. </tr>
  5185. </thead>
  5186. <tbody>
  5187. <tr>
  5188. <td>
  5189. <code>authRef</code></br>
  5190. <em>
  5191. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5192. External Secrets meta/v1.SecretKeySelector
  5193. </a>
  5194. </em>
  5195. </td>
  5196. <td>
  5197. </td>
  5198. </tr>
  5199. <tr>
  5200. <td>
  5201. <code>folderID</code></br>
  5202. <em>
  5203. string
  5204. </em>
  5205. </td>
  5206. <td>
  5207. </td>
  5208. </tr>
  5209. </tbody>
  5210. </table>
  5211. <h3 id="external-secrets.io/v1beta1.KubernetesAuth">KubernetesAuth
  5212. </h3>
  5213. <p>
  5214. (<em>Appears on:</em>
  5215. <a href="#external-secrets.io/v1beta1.KubernetesProvider">KubernetesProvider</a>)
  5216. </p>
  5217. <p>
  5218. </p>
  5219. <table>
  5220. <thead>
  5221. <tr>
  5222. <th>Field</th>
  5223. <th>Description</th>
  5224. </tr>
  5225. </thead>
  5226. <tbody>
  5227. <tr>
  5228. <td>
  5229. <code>cert</code></br>
  5230. <em>
  5231. <a href="#external-secrets.io/v1beta1.CertAuth">
  5232. CertAuth
  5233. </a>
  5234. </em>
  5235. </td>
  5236. <td>
  5237. <em>(Optional)</em>
  5238. <p>has both clientCert and clientKey as secretKeySelector</p>
  5239. </td>
  5240. </tr>
  5241. <tr>
  5242. <td>
  5243. <code>token</code></br>
  5244. <em>
  5245. <a href="#external-secrets.io/v1beta1.TokenAuth">
  5246. TokenAuth
  5247. </a>
  5248. </em>
  5249. </td>
  5250. <td>
  5251. <em>(Optional)</em>
  5252. <p>use static token to authenticate with</p>
  5253. </td>
  5254. </tr>
  5255. <tr>
  5256. <td>
  5257. <code>serviceAccount</code></br>
  5258. <em>
  5259. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  5260. External Secrets meta/v1.ServiceAccountSelector
  5261. </a>
  5262. </em>
  5263. </td>
  5264. <td>
  5265. <em>(Optional)</em>
  5266. <p>points to a service account that should be used for authentication</p>
  5267. </td>
  5268. </tr>
  5269. </tbody>
  5270. </table>
  5271. <h3 id="external-secrets.io/v1beta1.KubernetesProvider">KubernetesProvider
  5272. </h3>
  5273. <p>
  5274. (<em>Appears on:</em>
  5275. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5276. </p>
  5277. <p>
  5278. <p>Configures a store to sync secrets with a Kubernetes instance.</p>
  5279. </p>
  5280. <table>
  5281. <thead>
  5282. <tr>
  5283. <th>Field</th>
  5284. <th>Description</th>
  5285. </tr>
  5286. </thead>
  5287. <tbody>
  5288. <tr>
  5289. <td>
  5290. <code>server</code></br>
  5291. <em>
  5292. <a href="#external-secrets.io/v1beta1.KubernetesServer">
  5293. KubernetesServer
  5294. </a>
  5295. </em>
  5296. </td>
  5297. <td>
  5298. <p>configures the Kubernetes server Address.</p>
  5299. </td>
  5300. </tr>
  5301. <tr>
  5302. <td>
  5303. <code>auth</code></br>
  5304. <em>
  5305. <a href="#external-secrets.io/v1beta1.KubernetesAuth">
  5306. KubernetesAuth
  5307. </a>
  5308. </em>
  5309. </td>
  5310. <td>
  5311. <p>Auth configures how secret-manager authenticates with a Kubernetes instance.</p>
  5312. </td>
  5313. </tr>
  5314. <tr>
  5315. <td>
  5316. <code>remoteNamespace</code></br>
  5317. <em>
  5318. string
  5319. </em>
  5320. </td>
  5321. <td>
  5322. <em>(Optional)</em>
  5323. <p>Remote namespace to fetch the secrets from</p>
  5324. </td>
  5325. </tr>
  5326. </tbody>
  5327. </table>
  5328. <h3 id="external-secrets.io/v1beta1.KubernetesServer">KubernetesServer
  5329. </h3>
  5330. <p>
  5331. (<em>Appears on:</em>
  5332. <a href="#external-secrets.io/v1beta1.KubernetesProvider">KubernetesProvider</a>)
  5333. </p>
  5334. <p>
  5335. </p>
  5336. <table>
  5337. <thead>
  5338. <tr>
  5339. <th>Field</th>
  5340. <th>Description</th>
  5341. </tr>
  5342. </thead>
  5343. <tbody>
  5344. <tr>
  5345. <td>
  5346. <code>url</code></br>
  5347. <em>
  5348. string
  5349. </em>
  5350. </td>
  5351. <td>
  5352. <em>(Optional)</em>
  5353. <p>configures the Kubernetes server Address.</p>
  5354. </td>
  5355. </tr>
  5356. <tr>
  5357. <td>
  5358. <code>caBundle</code></br>
  5359. <em>
  5360. []byte
  5361. </em>
  5362. </td>
  5363. <td>
  5364. <em>(Optional)</em>
  5365. <p>CABundle is a base64-encoded CA certificate</p>
  5366. </td>
  5367. </tr>
  5368. <tr>
  5369. <td>
  5370. <code>caProvider</code></br>
  5371. <em>
  5372. <a href="#external-secrets.io/v1beta1.CAProvider">
  5373. CAProvider
  5374. </a>
  5375. </em>
  5376. </td>
  5377. <td>
  5378. <em>(Optional)</em>
  5379. <p>see: <a href="https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider">https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider</a></p>
  5380. </td>
  5381. </tr>
  5382. </tbody>
  5383. </table>
  5384. <h3 id="external-secrets.io/v1beta1.NoSecretError">NoSecretError
  5385. </h3>
  5386. <p>
  5387. <p>NoSecretError shall be returned when a GetSecret can not find the
  5388. desired secret. This is used for deletionPolicy.</p>
  5389. </p>
  5390. <h3 id="external-secrets.io/v1beta1.OnePasswordAuth">OnePasswordAuth
  5391. </h3>
  5392. <p>
  5393. (<em>Appears on:</em>
  5394. <a href="#external-secrets.io/v1beta1.OnePasswordProvider">OnePasswordProvider</a>)
  5395. </p>
  5396. <p>
  5397. <p>OnePasswordAuth contains a secretRef for credentials.</p>
  5398. </p>
  5399. <table>
  5400. <thead>
  5401. <tr>
  5402. <th>Field</th>
  5403. <th>Description</th>
  5404. </tr>
  5405. </thead>
  5406. <tbody>
  5407. <tr>
  5408. <td>
  5409. <code>secretRef</code></br>
  5410. <em>
  5411. <a href="#external-secrets.io/v1beta1.OnePasswordAuthSecretRef">
  5412. OnePasswordAuthSecretRef
  5413. </a>
  5414. </em>
  5415. </td>
  5416. <td>
  5417. </td>
  5418. </tr>
  5419. </tbody>
  5420. </table>
  5421. <h3 id="external-secrets.io/v1beta1.OnePasswordAuthSecretRef">OnePasswordAuthSecretRef
  5422. </h3>
  5423. <p>
  5424. (<em>Appears on:</em>
  5425. <a href="#external-secrets.io/v1beta1.OnePasswordAuth">OnePasswordAuth</a>)
  5426. </p>
  5427. <p>
  5428. <p>OnePasswordAuthSecretRef holds secret references for 1Password credentials.</p>
  5429. </p>
  5430. <table>
  5431. <thead>
  5432. <tr>
  5433. <th>Field</th>
  5434. <th>Description</th>
  5435. </tr>
  5436. </thead>
  5437. <tbody>
  5438. <tr>
  5439. <td>
  5440. <code>connectTokenSecretRef</code></br>
  5441. <em>
  5442. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5443. External Secrets meta/v1.SecretKeySelector
  5444. </a>
  5445. </em>
  5446. </td>
  5447. <td>
  5448. <p>The ConnectToken is used for authentication to a 1Password Connect Server.</p>
  5449. </td>
  5450. </tr>
  5451. </tbody>
  5452. </table>
  5453. <h3 id="external-secrets.io/v1beta1.OnePasswordProvider">OnePasswordProvider
  5454. </h3>
  5455. <p>
  5456. (<em>Appears on:</em>
  5457. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5458. </p>
  5459. <p>
  5460. <p>OnePasswordProvider configures a store to sync secrets using the 1Password Secret Manager provider.</p>
  5461. </p>
  5462. <table>
  5463. <thead>
  5464. <tr>
  5465. <th>Field</th>
  5466. <th>Description</th>
  5467. </tr>
  5468. </thead>
  5469. <tbody>
  5470. <tr>
  5471. <td>
  5472. <code>auth</code></br>
  5473. <em>
  5474. <a href="#external-secrets.io/v1beta1.OnePasswordAuth">
  5475. OnePasswordAuth
  5476. </a>
  5477. </em>
  5478. </td>
  5479. <td>
  5480. <p>Auth defines the information necessary to authenticate against OnePassword Connect Server</p>
  5481. </td>
  5482. </tr>
  5483. <tr>
  5484. <td>
  5485. <code>connectHost</code></br>
  5486. <em>
  5487. string
  5488. </em>
  5489. </td>
  5490. <td>
  5491. <p>ConnectHost defines the OnePassword Connect Server to connect to</p>
  5492. </td>
  5493. </tr>
  5494. <tr>
  5495. <td>
  5496. <code>vaults</code></br>
  5497. <em>
  5498. map[string]int
  5499. </em>
  5500. </td>
  5501. <td>
  5502. <p>Vaults defines which OnePassword vaults to search in which order</p>
  5503. </td>
  5504. </tr>
  5505. </tbody>
  5506. </table>
  5507. <h3 id="external-secrets.io/v1beta1.OracleAuth">OracleAuth
  5508. </h3>
  5509. <p>
  5510. (<em>Appears on:</em>
  5511. <a href="#external-secrets.io/v1beta1.OracleProvider">OracleProvider</a>)
  5512. </p>
  5513. <p>
  5514. </p>
  5515. <table>
  5516. <thead>
  5517. <tr>
  5518. <th>Field</th>
  5519. <th>Description</th>
  5520. </tr>
  5521. </thead>
  5522. <tbody>
  5523. <tr>
  5524. <td>
  5525. <code>tenancy</code></br>
  5526. <em>
  5527. string
  5528. </em>
  5529. </td>
  5530. <td>
  5531. <p>Tenancy is the tenancy OCID where user is located.</p>
  5532. </td>
  5533. </tr>
  5534. <tr>
  5535. <td>
  5536. <code>user</code></br>
  5537. <em>
  5538. string
  5539. </em>
  5540. </td>
  5541. <td>
  5542. <p>User is an access OCID specific to the account.</p>
  5543. </td>
  5544. </tr>
  5545. <tr>
  5546. <td>
  5547. <code>secretRef</code></br>
  5548. <em>
  5549. <a href="#external-secrets.io/v1beta1.OracleSecretRef">
  5550. OracleSecretRef
  5551. </a>
  5552. </em>
  5553. </td>
  5554. <td>
  5555. <p>SecretRef to pass through sensitive information.</p>
  5556. </td>
  5557. </tr>
  5558. </tbody>
  5559. </table>
  5560. <h3 id="external-secrets.io/v1beta1.OraclePrincipalType">OraclePrincipalType
  5561. (<code>string</code> alias)</p></h3>
  5562. <p>
  5563. (<em>Appears on:</em>
  5564. <a href="#external-secrets.io/v1beta1.OracleProvider">OracleProvider</a>)
  5565. </p>
  5566. <p>
  5567. </p>
  5568. <table>
  5569. <thead>
  5570. <tr>
  5571. <th>Value</th>
  5572. <th>Description</th>
  5573. </tr>
  5574. </thead>
  5575. <tbody><tr><td><p>&#34;InstancePrincipal&#34;</p></td>
  5576. <td><p>InstancePrincipal represents a instance principal.</p>
  5577. </td>
  5578. </tr><tr><td><p>&#34;UserPrincipal&#34;</p></td>
  5579. <td><p>UserPrincipal represents a user principal.</p>
  5580. </td>
  5581. </tr><tr><td><p>&#34;Workload&#34;</p></td>
  5582. <td><p>WorkloadPrincipal represents a workload principal.</p>
  5583. </td>
  5584. </tr></tbody>
  5585. </table>
  5586. <h3 id="external-secrets.io/v1beta1.OracleProvider">OracleProvider
  5587. </h3>
  5588. <p>
  5589. (<em>Appears on:</em>
  5590. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5591. </p>
  5592. <p>
  5593. <p>Configures an store to sync secrets using a Oracle Vault
  5594. backend.</p>
  5595. </p>
  5596. <table>
  5597. <thead>
  5598. <tr>
  5599. <th>Field</th>
  5600. <th>Description</th>
  5601. </tr>
  5602. </thead>
  5603. <tbody>
  5604. <tr>
  5605. <td>
  5606. <code>region</code></br>
  5607. <em>
  5608. string
  5609. </em>
  5610. </td>
  5611. <td>
  5612. <p>Region is the region where vault is located.</p>
  5613. </td>
  5614. </tr>
  5615. <tr>
  5616. <td>
  5617. <code>vault</code></br>
  5618. <em>
  5619. string
  5620. </em>
  5621. </td>
  5622. <td>
  5623. <p>Vault is the vault&rsquo;s OCID of the specific vault where secret is located.</p>
  5624. </td>
  5625. </tr>
  5626. <tr>
  5627. <td>
  5628. <code>compartment</code></br>
  5629. <em>
  5630. string
  5631. </em>
  5632. </td>
  5633. <td>
  5634. <em>(Optional)</em>
  5635. <p>Compartment is the vault compartment OCID.
  5636. Required for PushSecret</p>
  5637. </td>
  5638. </tr>
  5639. <tr>
  5640. <td>
  5641. <code>encryptionKey</code></br>
  5642. <em>
  5643. string
  5644. </em>
  5645. </td>
  5646. <td>
  5647. <em>(Optional)</em>
  5648. <p>EncryptionKey is the OCID of the encryption key within the vault.
  5649. Required for PushSecret</p>
  5650. </td>
  5651. </tr>
  5652. <tr>
  5653. <td>
  5654. <code>principalType</code></br>
  5655. <em>
  5656. <a href="#external-secrets.io/v1beta1.OraclePrincipalType">
  5657. OraclePrincipalType
  5658. </a>
  5659. </em>
  5660. </td>
  5661. <td>
  5662. <em>(Optional)</em>
  5663. <p>The type of principal to use for authentication. If left blank, the Auth struct will
  5664. determine the principal type. This optional field must be specified if using
  5665. workload identity.</p>
  5666. </td>
  5667. </tr>
  5668. <tr>
  5669. <td>
  5670. <code>auth</code></br>
  5671. <em>
  5672. <a href="#external-secrets.io/v1beta1.OracleAuth">
  5673. OracleAuth
  5674. </a>
  5675. </em>
  5676. </td>
  5677. <td>
  5678. <em>(Optional)</em>
  5679. <p>Auth configures how secret-manager authenticates with the Oracle Vault.
  5680. If empty, use the instance principal, otherwise the user credentials specified in Auth.</p>
  5681. </td>
  5682. </tr>
  5683. <tr>
  5684. <td>
  5685. <code>serviceAccountRef</code></br>
  5686. <em>
  5687. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  5688. External Secrets meta/v1.ServiceAccountSelector
  5689. </a>
  5690. </em>
  5691. </td>
  5692. <td>
  5693. <em>(Optional)</em>
  5694. <p>ServiceAccountRef specified the service account
  5695. that should be used when authenticating with WorkloadIdentity.</p>
  5696. </td>
  5697. </tr>
  5698. </tbody>
  5699. </table>
  5700. <h3 id="external-secrets.io/v1beta1.OracleSecretRef">OracleSecretRef
  5701. </h3>
  5702. <p>
  5703. (<em>Appears on:</em>
  5704. <a href="#external-secrets.io/v1beta1.OracleAuth">OracleAuth</a>)
  5705. </p>
  5706. <p>
  5707. </p>
  5708. <table>
  5709. <thead>
  5710. <tr>
  5711. <th>Field</th>
  5712. <th>Description</th>
  5713. </tr>
  5714. </thead>
  5715. <tbody>
  5716. <tr>
  5717. <td>
  5718. <code>privatekey</code></br>
  5719. <em>
  5720. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5721. External Secrets meta/v1.SecretKeySelector
  5722. </a>
  5723. </em>
  5724. </td>
  5725. <td>
  5726. <p>PrivateKey is the user&rsquo;s API Signing Key in PEM format, used for authentication.</p>
  5727. </td>
  5728. </tr>
  5729. <tr>
  5730. <td>
  5731. <code>fingerprint</code></br>
  5732. <em>
  5733. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5734. External Secrets meta/v1.SecretKeySelector
  5735. </a>
  5736. </em>
  5737. </td>
  5738. <td>
  5739. <p>Fingerprint is the fingerprint of the API private key.</p>
  5740. </td>
  5741. </tr>
  5742. </tbody>
  5743. </table>
  5744. <h3 id="external-secrets.io/v1beta1.Provider">Provider
  5745. </h3>
  5746. <p>
  5747. <p>Provider is a common interface for interacting with secret backends.</p>
  5748. </p>
  5749. <h3 id="external-secrets.io/v1beta1.PulumiProvider">PulumiProvider
  5750. </h3>
  5751. <p>
  5752. (<em>Appears on:</em>
  5753. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5754. </p>
  5755. <p>
  5756. </p>
  5757. <table>
  5758. <thead>
  5759. <tr>
  5760. <th>Field</th>
  5761. <th>Description</th>
  5762. </tr>
  5763. </thead>
  5764. <tbody>
  5765. <tr>
  5766. <td>
  5767. <code>apiUrl</code></br>
  5768. <em>
  5769. string
  5770. </em>
  5771. </td>
  5772. <td>
  5773. <p>APIURL is the URL of the Pulumi API.</p>
  5774. </td>
  5775. </tr>
  5776. <tr>
  5777. <td>
  5778. <code>accessToken</code></br>
  5779. <em>
  5780. <a href="#external-secrets.io/v1beta1.PulumiProviderSecretRef">
  5781. PulumiProviderSecretRef
  5782. </a>
  5783. </em>
  5784. </td>
  5785. <td>
  5786. <p>AccessToken is the access tokens to sign in to the Pulumi Cloud Console.</p>
  5787. </td>
  5788. </tr>
  5789. <tr>
  5790. <td>
  5791. <code>organization</code></br>
  5792. <em>
  5793. string
  5794. </em>
  5795. </td>
  5796. <td>
  5797. <p>Organization are a space to collaborate on shared projects and stacks.
  5798. To create a new organization, visit <a href="https://app.pulumi.com/">https://app.pulumi.com/</a> and click &ldquo;New Organization&rdquo;.</p>
  5799. </td>
  5800. </tr>
  5801. <tr>
  5802. <td>
  5803. <code>environment</code></br>
  5804. <em>
  5805. string
  5806. </em>
  5807. </td>
  5808. <td>
  5809. <p>Environment are YAML documents composed of static key-value pairs, programmatic expressions,
  5810. dynamically retrieved values from supported providers including all major clouds,
  5811. and other Pulumi ESC environments.
  5812. To create a new environment, visit <a href="https://www.pulumi.com/docs/esc/environments/">https://www.pulumi.com/docs/esc/environments/</a> for more information.</p>
  5813. </td>
  5814. </tr>
  5815. </tbody>
  5816. </table>
  5817. <h3 id="external-secrets.io/v1beta1.PulumiProviderSecretRef">PulumiProviderSecretRef
  5818. </h3>
  5819. <p>
  5820. (<em>Appears on:</em>
  5821. <a href="#external-secrets.io/v1beta1.PulumiProvider">PulumiProvider</a>)
  5822. </p>
  5823. <p>
  5824. </p>
  5825. <table>
  5826. <thead>
  5827. <tr>
  5828. <th>Field</th>
  5829. <th>Description</th>
  5830. </tr>
  5831. </thead>
  5832. <tbody>
  5833. <tr>
  5834. <td>
  5835. <code>secretRef</code></br>
  5836. <em>
  5837. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5838. External Secrets meta/v1.SecretKeySelector
  5839. </a>
  5840. </em>
  5841. </td>
  5842. <td>
  5843. <p>SecretRef is a reference to a secret containing the Pulumi API token.</p>
  5844. </td>
  5845. </tr>
  5846. </tbody>
  5847. </table>
  5848. <h3 id="external-secrets.io/v1beta1.PushSecretData">PushSecretData
  5849. </h3>
  5850. <p>
  5851. <p>PushSecretData is an interface to allow using v1alpha1.PushSecretData content in Provider registered in v1beta1.</p>
  5852. </p>
  5853. <h3 id="external-secrets.io/v1beta1.PushSecretRemoteRef">PushSecretRemoteRef
  5854. </h3>
  5855. <p>
  5856. <p>PushSecretRemoteRef is an interface to allow using v1alpha1.PushSecretRemoteRef in Provider registered in v1beta1.</p>
  5857. </p>
  5858. <h3 id="external-secrets.io/v1beta1.ScalewayProvider">ScalewayProvider
  5859. </h3>
  5860. <p>
  5861. (<em>Appears on:</em>
  5862. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5863. </p>
  5864. <p>
  5865. </p>
  5866. <table>
  5867. <thead>
  5868. <tr>
  5869. <th>Field</th>
  5870. <th>Description</th>
  5871. </tr>
  5872. </thead>
  5873. <tbody>
  5874. <tr>
  5875. <td>
  5876. <code>apiUrl</code></br>
  5877. <em>
  5878. string
  5879. </em>
  5880. </td>
  5881. <td>
  5882. <em>(Optional)</em>
  5883. <p>APIURL is the url of the api to use. Defaults to <a href="https://api.scaleway.com">https://api.scaleway.com</a></p>
  5884. </td>
  5885. </tr>
  5886. <tr>
  5887. <td>
  5888. <code>region</code></br>
  5889. <em>
  5890. string
  5891. </em>
  5892. </td>
  5893. <td>
  5894. <p>Region where your secrets are located: <a href="https://developers.scaleway.com/en/quickstart/#region-and-zone">https://developers.scaleway.com/en/quickstart/#region-and-zone</a></p>
  5895. </td>
  5896. </tr>
  5897. <tr>
  5898. <td>
  5899. <code>projectId</code></br>
  5900. <em>
  5901. string
  5902. </em>
  5903. </td>
  5904. <td>
  5905. <p>ProjectID is the id of your project, which you can find in the console: <a href="https://console.scaleway.com/project/settings">https://console.scaleway.com/project/settings</a></p>
  5906. </td>
  5907. </tr>
  5908. <tr>
  5909. <td>
  5910. <code>accessKey</code></br>
  5911. <em>
  5912. <a href="#external-secrets.io/v1beta1.ScalewayProviderSecretRef">
  5913. ScalewayProviderSecretRef
  5914. </a>
  5915. </em>
  5916. </td>
  5917. <td>
  5918. <p>AccessKey is the non-secret part of the api key.</p>
  5919. </td>
  5920. </tr>
  5921. <tr>
  5922. <td>
  5923. <code>secretKey</code></br>
  5924. <em>
  5925. <a href="#external-secrets.io/v1beta1.ScalewayProviderSecretRef">
  5926. ScalewayProviderSecretRef
  5927. </a>
  5928. </em>
  5929. </td>
  5930. <td>
  5931. <p>SecretKey is the non-secret part of the api key.</p>
  5932. </td>
  5933. </tr>
  5934. </tbody>
  5935. </table>
  5936. <h3 id="external-secrets.io/v1beta1.ScalewayProviderSecretRef">ScalewayProviderSecretRef
  5937. </h3>
  5938. <p>
  5939. (<em>Appears on:</em>
  5940. <a href="#external-secrets.io/v1beta1.ScalewayProvider">ScalewayProvider</a>)
  5941. </p>
  5942. <p>
  5943. </p>
  5944. <table>
  5945. <thead>
  5946. <tr>
  5947. <th>Field</th>
  5948. <th>Description</th>
  5949. </tr>
  5950. </thead>
  5951. <tbody>
  5952. <tr>
  5953. <td>
  5954. <code>value</code></br>
  5955. <em>
  5956. string
  5957. </em>
  5958. </td>
  5959. <td>
  5960. <em>(Optional)</em>
  5961. <p>Value can be specified directly to set a value without using a secret.</p>
  5962. </td>
  5963. </tr>
  5964. <tr>
  5965. <td>
  5966. <code>secretRef</code></br>
  5967. <em>
  5968. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5969. External Secrets meta/v1.SecretKeySelector
  5970. </a>
  5971. </em>
  5972. </td>
  5973. <td>
  5974. <em>(Optional)</em>
  5975. <p>SecretRef references a key in a secret that will be used as value.</p>
  5976. </td>
  5977. </tr>
  5978. </tbody>
  5979. </table>
  5980. <h3 id="external-secrets.io/v1beta1.SecretStore">SecretStore
  5981. </h3>
  5982. <p>
  5983. <p>SecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  5984. </p>
  5985. <table>
  5986. <thead>
  5987. <tr>
  5988. <th>Field</th>
  5989. <th>Description</th>
  5990. </tr>
  5991. </thead>
  5992. <tbody>
  5993. <tr>
  5994. <td>
  5995. <code>metadata</code></br>
  5996. <em>
  5997. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  5998. Kubernetes meta/v1.ObjectMeta
  5999. </a>
  6000. </em>
  6001. </td>
  6002. <td>
  6003. Refer to the Kubernetes API documentation for the fields of the
  6004. <code>metadata</code> field.
  6005. </td>
  6006. </tr>
  6007. <tr>
  6008. <td>
  6009. <code>spec</code></br>
  6010. <em>
  6011. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">
  6012. SecretStoreSpec
  6013. </a>
  6014. </em>
  6015. </td>
  6016. <td>
  6017. <br/>
  6018. <br/>
  6019. <table>
  6020. <tr>
  6021. <td>
  6022. <code>controller</code></br>
  6023. <em>
  6024. string
  6025. </em>
  6026. </td>
  6027. <td>
  6028. <em>(Optional)</em>
  6029. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  6030. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  6031. </td>
  6032. </tr>
  6033. <tr>
  6034. <td>
  6035. <code>provider</code></br>
  6036. <em>
  6037. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">
  6038. SecretStoreProvider
  6039. </a>
  6040. </em>
  6041. </td>
  6042. <td>
  6043. <p>Used to configure the provider. Only one provider may be set</p>
  6044. </td>
  6045. </tr>
  6046. <tr>
  6047. <td>
  6048. <code>retrySettings</code></br>
  6049. <em>
  6050. <a href="#external-secrets.io/v1beta1.SecretStoreRetrySettings">
  6051. SecretStoreRetrySettings
  6052. </a>
  6053. </em>
  6054. </td>
  6055. <td>
  6056. <em>(Optional)</em>
  6057. <p>Used to configure http retries if failed</p>
  6058. </td>
  6059. </tr>
  6060. <tr>
  6061. <td>
  6062. <code>refreshInterval</code></br>
  6063. <em>
  6064. int
  6065. </em>
  6066. </td>
  6067. <td>
  6068. <em>(Optional)</em>
  6069. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  6070. </td>
  6071. </tr>
  6072. <tr>
  6073. <td>
  6074. <code>conditions</code></br>
  6075. <em>
  6076. <a href="#external-secrets.io/v1beta1.ClusterSecretStoreCondition">
  6077. []ClusterSecretStoreCondition
  6078. </a>
  6079. </em>
  6080. </td>
  6081. <td>
  6082. <em>(Optional)</em>
  6083. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  6084. </td>
  6085. </tr>
  6086. </table>
  6087. </td>
  6088. </tr>
  6089. <tr>
  6090. <td>
  6091. <code>status</code></br>
  6092. <em>
  6093. <a href="#external-secrets.io/v1beta1.SecretStoreStatus">
  6094. SecretStoreStatus
  6095. </a>
  6096. </em>
  6097. </td>
  6098. <td>
  6099. </td>
  6100. </tr>
  6101. </tbody>
  6102. </table>
  6103. <h3 id="external-secrets.io/v1beta1.SecretStoreCapabilities">SecretStoreCapabilities
  6104. (<code>string</code> alias)</p></h3>
  6105. <p>
  6106. (<em>Appears on:</em>
  6107. <a href="#external-secrets.io/v1beta1.SecretStoreStatus">SecretStoreStatus</a>)
  6108. </p>
  6109. <p>
  6110. <p>SecretStoreCapabilities defines the possible operations a SecretStore can do.</p>
  6111. </p>
  6112. <table>
  6113. <thead>
  6114. <tr>
  6115. <th>Value</th>
  6116. <th>Description</th>
  6117. </tr>
  6118. </thead>
  6119. <tbody><tr><td><p>&#34;ReadOnly&#34;</p></td>
  6120. <td></td>
  6121. </tr><tr><td><p>&#34;ReadWrite&#34;</p></td>
  6122. <td></td>
  6123. </tr><tr><td><p>&#34;WriteOnly&#34;</p></td>
  6124. <td></td>
  6125. </tr></tbody>
  6126. </table>
  6127. <h3 id="external-secrets.io/v1beta1.SecretStoreConditionType">SecretStoreConditionType
  6128. (<code>string</code> alias)</p></h3>
  6129. <p>
  6130. (<em>Appears on:</em>
  6131. <a href="#external-secrets.io/v1beta1.SecretStoreStatusCondition">SecretStoreStatusCondition</a>)
  6132. </p>
  6133. <p>
  6134. </p>
  6135. <table>
  6136. <thead>
  6137. <tr>
  6138. <th>Value</th>
  6139. <th>Description</th>
  6140. </tr>
  6141. </thead>
  6142. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  6143. <td></td>
  6144. </tr></tbody>
  6145. </table>
  6146. <h3 id="external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider
  6147. </h3>
  6148. <p>
  6149. (<em>Appears on:</em>
  6150. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec</a>)
  6151. </p>
  6152. <p>
  6153. <p>SecretStoreProvider contains the provider-specific configuration.</p>
  6154. </p>
  6155. <table>
  6156. <thead>
  6157. <tr>
  6158. <th>Field</th>
  6159. <th>Description</th>
  6160. </tr>
  6161. </thead>
  6162. <tbody>
  6163. <tr>
  6164. <td>
  6165. <code>aws</code></br>
  6166. <em>
  6167. <a href="#external-secrets.io/v1beta1.AWSProvider">
  6168. AWSProvider
  6169. </a>
  6170. </em>
  6171. </td>
  6172. <td>
  6173. <em>(Optional)</em>
  6174. <p>AWS configures this store to sync secrets using AWS Secret Manager provider</p>
  6175. </td>
  6176. </tr>
  6177. <tr>
  6178. <td>
  6179. <code>azurekv</code></br>
  6180. <em>
  6181. <a href="#external-secrets.io/v1beta1.AzureKVProvider">
  6182. AzureKVProvider
  6183. </a>
  6184. </em>
  6185. </td>
  6186. <td>
  6187. <em>(Optional)</em>
  6188. <p>AzureKV configures this store to sync secrets using Azure Key Vault provider</p>
  6189. </td>
  6190. </tr>
  6191. <tr>
  6192. <td>
  6193. <code>akeyless</code></br>
  6194. <em>
  6195. <a href="#external-secrets.io/v1beta1.AkeylessProvider">
  6196. AkeylessProvider
  6197. </a>
  6198. </em>
  6199. </td>
  6200. <td>
  6201. <em>(Optional)</em>
  6202. <p>Akeyless configures this store to sync secrets using Akeyless Vault provider</p>
  6203. </td>
  6204. </tr>
  6205. <tr>
  6206. <td>
  6207. <code>vault</code></br>
  6208. <em>
  6209. <a href="#external-secrets.io/v1beta1.VaultProvider">
  6210. VaultProvider
  6211. </a>
  6212. </em>
  6213. </td>
  6214. <td>
  6215. <em>(Optional)</em>
  6216. <p>Vault configures this store to sync secrets using Hashi provider</p>
  6217. </td>
  6218. </tr>
  6219. <tr>
  6220. <td>
  6221. <code>gcpsm</code></br>
  6222. <em>
  6223. <a href="#external-secrets.io/v1beta1.GCPSMProvider">
  6224. GCPSMProvider
  6225. </a>
  6226. </em>
  6227. </td>
  6228. <td>
  6229. <em>(Optional)</em>
  6230. <p>GCPSM configures this store to sync secrets using Google Cloud Platform Secret Manager provider</p>
  6231. </td>
  6232. </tr>
  6233. <tr>
  6234. <td>
  6235. <code>oracle</code></br>
  6236. <em>
  6237. <a href="#external-secrets.io/v1beta1.OracleProvider">
  6238. OracleProvider
  6239. </a>
  6240. </em>
  6241. </td>
  6242. <td>
  6243. <em>(Optional)</em>
  6244. <p>Oracle configures this store to sync secrets using Oracle Vault provider</p>
  6245. </td>
  6246. </tr>
  6247. <tr>
  6248. <td>
  6249. <code>ibm</code></br>
  6250. <em>
  6251. <a href="#external-secrets.io/v1beta1.IBMProvider">
  6252. IBMProvider
  6253. </a>
  6254. </em>
  6255. </td>
  6256. <td>
  6257. <em>(Optional)</em>
  6258. <p>IBM configures this store to sync secrets using IBM Cloud provider</p>
  6259. </td>
  6260. </tr>
  6261. <tr>
  6262. <td>
  6263. <code>yandexcertificatemanager</code></br>
  6264. <em>
  6265. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerProvider">
  6266. YandexCertificateManagerProvider
  6267. </a>
  6268. </em>
  6269. </td>
  6270. <td>
  6271. <em>(Optional)</em>
  6272. <p>YandexCertificateManager configures this store to sync secrets using Yandex Certificate Manager provider</p>
  6273. </td>
  6274. </tr>
  6275. <tr>
  6276. <td>
  6277. <code>yandexlockbox</code></br>
  6278. <em>
  6279. <a href="#external-secrets.io/v1beta1.YandexLockboxProvider">
  6280. YandexLockboxProvider
  6281. </a>
  6282. </em>
  6283. </td>
  6284. <td>
  6285. <em>(Optional)</em>
  6286. <p>YandexLockbox configures this store to sync secrets using Yandex Lockbox provider</p>
  6287. </td>
  6288. </tr>
  6289. <tr>
  6290. <td>
  6291. <code>gitlab</code></br>
  6292. <em>
  6293. <a href="#external-secrets.io/v1beta1.GitlabProvider">
  6294. GitlabProvider
  6295. </a>
  6296. </em>
  6297. </td>
  6298. <td>
  6299. <em>(Optional)</em>
  6300. <p>GitLab configures this store to sync secrets using GitLab Variables provider</p>
  6301. </td>
  6302. </tr>
  6303. <tr>
  6304. <td>
  6305. <code>alibaba</code></br>
  6306. <em>
  6307. <a href="#external-secrets.io/v1beta1.AlibabaProvider">
  6308. AlibabaProvider
  6309. </a>
  6310. </em>
  6311. </td>
  6312. <td>
  6313. <em>(Optional)</em>
  6314. <p>Alibaba configures this store to sync secrets using Alibaba Cloud provider</p>
  6315. </td>
  6316. </tr>
  6317. <tr>
  6318. <td>
  6319. <code>onepassword</code></br>
  6320. <em>
  6321. <a href="#external-secrets.io/v1beta1.OnePasswordProvider">
  6322. OnePasswordProvider
  6323. </a>
  6324. </em>
  6325. </td>
  6326. <td>
  6327. <em>(Optional)</em>
  6328. <p>OnePassword configures this store to sync secrets using the 1Password Cloud provider</p>
  6329. </td>
  6330. </tr>
  6331. <tr>
  6332. <td>
  6333. <code>webhook</code></br>
  6334. <em>
  6335. <a href="#external-secrets.io/v1beta1.WebhookProvider">
  6336. WebhookProvider
  6337. </a>
  6338. </em>
  6339. </td>
  6340. <td>
  6341. <em>(Optional)</em>
  6342. <p>Webhook configures this store to sync secrets using a generic templated webhook</p>
  6343. </td>
  6344. </tr>
  6345. <tr>
  6346. <td>
  6347. <code>kubernetes</code></br>
  6348. <em>
  6349. <a href="#external-secrets.io/v1beta1.KubernetesProvider">
  6350. KubernetesProvider
  6351. </a>
  6352. </em>
  6353. </td>
  6354. <td>
  6355. <em>(Optional)</em>
  6356. <p>Kubernetes configures this store to sync secrets using a Kubernetes cluster provider</p>
  6357. </td>
  6358. </tr>
  6359. <tr>
  6360. <td>
  6361. <code>fake</code></br>
  6362. <em>
  6363. <a href="#external-secrets.io/v1beta1.FakeProvider">
  6364. FakeProvider
  6365. </a>
  6366. </em>
  6367. </td>
  6368. <td>
  6369. <em>(Optional)</em>
  6370. <p>Fake configures a store with static key/value pairs</p>
  6371. </td>
  6372. </tr>
  6373. <tr>
  6374. <td>
  6375. <code>senhasegura</code></br>
  6376. <em>
  6377. <a href="#external-secrets.io/v1beta1.SenhaseguraProvider">
  6378. SenhaseguraProvider
  6379. </a>
  6380. </em>
  6381. </td>
  6382. <td>
  6383. <em>(Optional)</em>
  6384. <p>Senhasegura configures this store to sync secrets using senhasegura provider</p>
  6385. </td>
  6386. </tr>
  6387. <tr>
  6388. <td>
  6389. <code>scaleway</code></br>
  6390. <em>
  6391. <a href="#external-secrets.io/v1beta1.ScalewayProvider">
  6392. ScalewayProvider
  6393. </a>
  6394. </em>
  6395. </td>
  6396. <td>
  6397. <em>(Optional)</em>
  6398. <p>Scaleway</p>
  6399. </td>
  6400. </tr>
  6401. <tr>
  6402. <td>
  6403. <code>doppler</code></br>
  6404. <em>
  6405. <a href="#external-secrets.io/v1beta1.DopplerProvider">
  6406. DopplerProvider
  6407. </a>
  6408. </em>
  6409. </td>
  6410. <td>
  6411. <em>(Optional)</em>
  6412. <p>Doppler configures this store to sync secrets using the Doppler provider</p>
  6413. </td>
  6414. </tr>
  6415. <tr>
  6416. <td>
  6417. <code>keepersecurity</code></br>
  6418. <em>
  6419. <a href="#external-secrets.io/v1beta1.KeeperSecurityProvider">
  6420. KeeperSecurityProvider
  6421. </a>
  6422. </em>
  6423. </td>
  6424. <td>
  6425. <em>(Optional)</em>
  6426. <p>KeeperSecurity configures this store to sync secrets using the KeeperSecurity provider</p>
  6427. </td>
  6428. </tr>
  6429. <tr>
  6430. <td>
  6431. <code>conjur</code></br>
  6432. <em>
  6433. <a href="#external-secrets.io/v1beta1.ConjurProvider">
  6434. ConjurProvider
  6435. </a>
  6436. </em>
  6437. </td>
  6438. <td>
  6439. <em>(Optional)</em>
  6440. <p>Conjur configures this store to sync secrets using conjur provider</p>
  6441. </td>
  6442. </tr>
  6443. <tr>
  6444. <td>
  6445. <code>delinea</code></br>
  6446. <em>
  6447. <a href="#external-secrets.io/v1beta1.DelineaProvider">
  6448. DelineaProvider
  6449. </a>
  6450. </em>
  6451. </td>
  6452. <td>
  6453. <em>(Optional)</em>
  6454. <p>Delinea DevOps Secrets Vault
  6455. <a href="https://docs.delinea.com/online-help/products/devops-secrets-vault/current">https://docs.delinea.com/online-help/products/devops-secrets-vault/current</a></p>
  6456. </td>
  6457. </tr>
  6458. <tr>
  6459. <td>
  6460. <code>chef</code></br>
  6461. <em>
  6462. <a href="#external-secrets.io/v1beta1.ChefProvider">
  6463. ChefProvider
  6464. </a>
  6465. </em>
  6466. </td>
  6467. <td>
  6468. <em>(Optional)</em>
  6469. <p>Chef configures this store to sync secrets with chef server</p>
  6470. </td>
  6471. </tr>
  6472. <tr>
  6473. <td>
  6474. <code>pulumi</code></br>
  6475. <em>
  6476. <a href="#external-secrets.io/v1beta1.PulumiProvider">
  6477. PulumiProvider
  6478. </a>
  6479. </em>
  6480. </td>
  6481. <td>
  6482. <em>(Optional)</em>
  6483. <p>Pulumi configures this store to sync secrets using the Pulumi provider</p>
  6484. </td>
  6485. </tr>
  6486. </tbody>
  6487. </table>
  6488. <h3 id="external-secrets.io/v1beta1.SecretStoreRef">SecretStoreRef
  6489. </h3>
  6490. <p>
  6491. (<em>Appears on:</em>
  6492. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>,
  6493. <a href="#external-secrets.io/v1beta1.StoreGeneratorSourceRef">StoreGeneratorSourceRef</a>,
  6494. <a href="#external-secrets.io/v1beta1.StoreSourceRef">StoreSourceRef</a>)
  6495. </p>
  6496. <p>
  6497. <p>SecretStoreRef defines which SecretStore to fetch the ExternalSecret data.</p>
  6498. </p>
  6499. <table>
  6500. <thead>
  6501. <tr>
  6502. <th>Field</th>
  6503. <th>Description</th>
  6504. </tr>
  6505. </thead>
  6506. <tbody>
  6507. <tr>
  6508. <td>
  6509. <code>name</code></br>
  6510. <em>
  6511. string
  6512. </em>
  6513. </td>
  6514. <td>
  6515. <p>Name of the SecretStore resource</p>
  6516. </td>
  6517. </tr>
  6518. <tr>
  6519. <td>
  6520. <code>kind</code></br>
  6521. <em>
  6522. string
  6523. </em>
  6524. </td>
  6525. <td>
  6526. <em>(Optional)</em>
  6527. <p>Kind of the SecretStore resource (SecretStore or ClusterSecretStore)
  6528. Defaults to <code>SecretStore</code></p>
  6529. </td>
  6530. </tr>
  6531. </tbody>
  6532. </table>
  6533. <h3 id="external-secrets.io/v1beta1.SecretStoreRetrySettings">SecretStoreRetrySettings
  6534. </h3>
  6535. <p>
  6536. (<em>Appears on:</em>
  6537. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec</a>)
  6538. </p>
  6539. <p>
  6540. </p>
  6541. <table>
  6542. <thead>
  6543. <tr>
  6544. <th>Field</th>
  6545. <th>Description</th>
  6546. </tr>
  6547. </thead>
  6548. <tbody>
  6549. <tr>
  6550. <td>
  6551. <code>maxRetries</code></br>
  6552. <em>
  6553. int32
  6554. </em>
  6555. </td>
  6556. <td>
  6557. </td>
  6558. </tr>
  6559. <tr>
  6560. <td>
  6561. <code>retryInterval</code></br>
  6562. <em>
  6563. string
  6564. </em>
  6565. </td>
  6566. <td>
  6567. </td>
  6568. </tr>
  6569. </tbody>
  6570. </table>
  6571. <h3 id="external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec
  6572. </h3>
  6573. <p>
  6574. (<em>Appears on:</em>
  6575. <a href="#external-secrets.io/v1beta1.ClusterSecretStore">ClusterSecretStore</a>,
  6576. <a href="#external-secrets.io/v1beta1.SecretStore">SecretStore</a>)
  6577. </p>
  6578. <p>
  6579. <p>SecretStoreSpec defines the desired state of SecretStore.</p>
  6580. </p>
  6581. <table>
  6582. <thead>
  6583. <tr>
  6584. <th>Field</th>
  6585. <th>Description</th>
  6586. </tr>
  6587. </thead>
  6588. <tbody>
  6589. <tr>
  6590. <td>
  6591. <code>controller</code></br>
  6592. <em>
  6593. string
  6594. </em>
  6595. </td>
  6596. <td>
  6597. <em>(Optional)</em>
  6598. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  6599. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  6600. </td>
  6601. </tr>
  6602. <tr>
  6603. <td>
  6604. <code>provider</code></br>
  6605. <em>
  6606. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">
  6607. SecretStoreProvider
  6608. </a>
  6609. </em>
  6610. </td>
  6611. <td>
  6612. <p>Used to configure the provider. Only one provider may be set</p>
  6613. </td>
  6614. </tr>
  6615. <tr>
  6616. <td>
  6617. <code>retrySettings</code></br>
  6618. <em>
  6619. <a href="#external-secrets.io/v1beta1.SecretStoreRetrySettings">
  6620. SecretStoreRetrySettings
  6621. </a>
  6622. </em>
  6623. </td>
  6624. <td>
  6625. <em>(Optional)</em>
  6626. <p>Used to configure http retries if failed</p>
  6627. </td>
  6628. </tr>
  6629. <tr>
  6630. <td>
  6631. <code>refreshInterval</code></br>
  6632. <em>
  6633. int
  6634. </em>
  6635. </td>
  6636. <td>
  6637. <em>(Optional)</em>
  6638. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  6639. </td>
  6640. </tr>
  6641. <tr>
  6642. <td>
  6643. <code>conditions</code></br>
  6644. <em>
  6645. <a href="#external-secrets.io/v1beta1.ClusterSecretStoreCondition">
  6646. []ClusterSecretStoreCondition
  6647. </a>
  6648. </em>
  6649. </td>
  6650. <td>
  6651. <em>(Optional)</em>
  6652. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  6653. </td>
  6654. </tr>
  6655. </tbody>
  6656. </table>
  6657. <h3 id="external-secrets.io/v1beta1.SecretStoreStatus">SecretStoreStatus
  6658. </h3>
  6659. <p>
  6660. (<em>Appears on:</em>
  6661. <a href="#external-secrets.io/v1beta1.ClusterSecretStore">ClusterSecretStore</a>,
  6662. <a href="#external-secrets.io/v1beta1.SecretStore">SecretStore</a>)
  6663. </p>
  6664. <p>
  6665. <p>SecretStoreStatus defines the observed state of the SecretStore.</p>
  6666. </p>
  6667. <table>
  6668. <thead>
  6669. <tr>
  6670. <th>Field</th>
  6671. <th>Description</th>
  6672. </tr>
  6673. </thead>
  6674. <tbody>
  6675. <tr>
  6676. <td>
  6677. <code>conditions</code></br>
  6678. <em>
  6679. <a href="#external-secrets.io/v1beta1.SecretStoreStatusCondition">
  6680. []SecretStoreStatusCondition
  6681. </a>
  6682. </em>
  6683. </td>
  6684. <td>
  6685. <em>(Optional)</em>
  6686. </td>
  6687. </tr>
  6688. <tr>
  6689. <td>
  6690. <code>capabilities</code></br>
  6691. <em>
  6692. <a href="#external-secrets.io/v1beta1.SecretStoreCapabilities">
  6693. SecretStoreCapabilities
  6694. </a>
  6695. </em>
  6696. </td>
  6697. <td>
  6698. <em>(Optional)</em>
  6699. </td>
  6700. </tr>
  6701. </tbody>
  6702. </table>
  6703. <h3 id="external-secrets.io/v1beta1.SecretStoreStatusCondition">SecretStoreStatusCondition
  6704. </h3>
  6705. <p>
  6706. (<em>Appears on:</em>
  6707. <a href="#external-secrets.io/v1beta1.SecretStoreStatus">SecretStoreStatus</a>)
  6708. </p>
  6709. <p>
  6710. </p>
  6711. <table>
  6712. <thead>
  6713. <tr>
  6714. <th>Field</th>
  6715. <th>Description</th>
  6716. </tr>
  6717. </thead>
  6718. <tbody>
  6719. <tr>
  6720. <td>
  6721. <code>type</code></br>
  6722. <em>
  6723. <a href="#external-secrets.io/v1beta1.SecretStoreConditionType">
  6724. SecretStoreConditionType
  6725. </a>
  6726. </em>
  6727. </td>
  6728. <td>
  6729. </td>
  6730. </tr>
  6731. <tr>
  6732. <td>
  6733. <code>status</code></br>
  6734. <em>
  6735. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  6736. Kubernetes core/v1.ConditionStatus
  6737. </a>
  6738. </em>
  6739. </td>
  6740. <td>
  6741. </td>
  6742. </tr>
  6743. <tr>
  6744. <td>
  6745. <code>reason</code></br>
  6746. <em>
  6747. string
  6748. </em>
  6749. </td>
  6750. <td>
  6751. <em>(Optional)</em>
  6752. </td>
  6753. </tr>
  6754. <tr>
  6755. <td>
  6756. <code>message</code></br>
  6757. <em>
  6758. string
  6759. </em>
  6760. </td>
  6761. <td>
  6762. <em>(Optional)</em>
  6763. </td>
  6764. </tr>
  6765. <tr>
  6766. <td>
  6767. <code>lastTransitionTime</code></br>
  6768. <em>
  6769. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  6770. Kubernetes meta/v1.Time
  6771. </a>
  6772. </em>
  6773. </td>
  6774. <td>
  6775. <em>(Optional)</em>
  6776. </td>
  6777. </tr>
  6778. </tbody>
  6779. </table>
  6780. <h3 id="external-secrets.io/v1beta1.SecretsClient">SecretsClient
  6781. </h3>
  6782. <p>
  6783. <p>SecretsClient provides access to secrets.</p>
  6784. </p>
  6785. <h3 id="external-secrets.io/v1beta1.SecretsManager">SecretsManager
  6786. </h3>
  6787. <p>
  6788. (<em>Appears on:</em>
  6789. <a href="#external-secrets.io/v1beta1.AWSProvider">AWSProvider</a>)
  6790. </p>
  6791. <p>
  6792. <p>SecretsManager defines how the provider behaves when interacting with AWS
  6793. SecretsManager. Some of these settings are only applicable to controlling how
  6794. secrets are deleted, and hence only apply to PushSecret (and only when
  6795. deletionPolicy is set to Delete).</p>
  6796. </p>
  6797. <table>
  6798. <thead>
  6799. <tr>
  6800. <th>Field</th>
  6801. <th>Description</th>
  6802. </tr>
  6803. </thead>
  6804. <tbody>
  6805. <tr>
  6806. <td>
  6807. <code>forceDeleteWithoutRecovery</code></br>
  6808. <em>
  6809. bool
  6810. </em>
  6811. </td>
  6812. <td>
  6813. <em>(Optional)</em>
  6814. <p>Specifies whether to delete the secret without any recovery window. You
  6815. can&rsquo;t use both this parameter and RecoveryWindowInDays in the same call.
  6816. If you don&rsquo;t use either, then by default Secrets Manager uses a 30 day
  6817. recovery window.
  6818. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-ForceDeleteWithoutRecovery">https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-ForceDeleteWithoutRecovery</a></p>
  6819. </td>
  6820. </tr>
  6821. <tr>
  6822. <td>
  6823. <code>recoveryWindowInDays</code></br>
  6824. <em>
  6825. int64
  6826. </em>
  6827. </td>
  6828. <td>
  6829. <em>(Optional)</em>
  6830. <p>The number of days from 7 to 30 that Secrets Manager waits before
  6831. permanently deleting the secret. You can&rsquo;t use both this parameter and
  6832. ForceDeleteWithoutRecovery in the same call. If you don&rsquo;t use either,
  6833. then by default Secrets Manager uses a 30 day recovery window.
  6834. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-RecoveryWindowInDays">https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-RecoveryWindowInDays</a></p>
  6835. </td>
  6836. </tr>
  6837. </tbody>
  6838. </table>
  6839. <h3 id="external-secrets.io/v1beta1.SenhaseguraAuth">SenhaseguraAuth
  6840. </h3>
  6841. <p>
  6842. (<em>Appears on:</em>
  6843. <a href="#external-secrets.io/v1beta1.SenhaseguraProvider">SenhaseguraProvider</a>)
  6844. </p>
  6845. <p>
  6846. <p>SenhaseguraAuth tells the controller how to do auth in senhasegura.</p>
  6847. </p>
  6848. <table>
  6849. <thead>
  6850. <tr>
  6851. <th>Field</th>
  6852. <th>Description</th>
  6853. </tr>
  6854. </thead>
  6855. <tbody>
  6856. <tr>
  6857. <td>
  6858. <code>clientId</code></br>
  6859. <em>
  6860. string
  6861. </em>
  6862. </td>
  6863. <td>
  6864. </td>
  6865. </tr>
  6866. <tr>
  6867. <td>
  6868. <code>clientSecretSecretRef</code></br>
  6869. <em>
  6870. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6871. External Secrets meta/v1.SecretKeySelector
  6872. </a>
  6873. </em>
  6874. </td>
  6875. <td>
  6876. </td>
  6877. </tr>
  6878. </tbody>
  6879. </table>
  6880. <h3 id="external-secrets.io/v1beta1.SenhaseguraModuleType">SenhaseguraModuleType
  6881. (<code>string</code> alias)</p></h3>
  6882. <p>
  6883. (<em>Appears on:</em>
  6884. <a href="#external-secrets.io/v1beta1.SenhaseguraProvider">SenhaseguraProvider</a>)
  6885. </p>
  6886. <p>
  6887. <p>SenhaseguraModuleType enum defines senhasegura target module to fetch secrets</p>
  6888. </p>
  6889. <table>
  6890. <thead>
  6891. <tr>
  6892. <th>Value</th>
  6893. <th>Description</th>
  6894. </tr>
  6895. </thead>
  6896. <tbody><tr><td><p>&#34;DSM&#34;</p></td>
  6897. <td><pre><code> SenhaseguraModuleDSM is the senhasegura DevOps Secrets Management module
  6898. see: https://senhasegura.com/devops
  6899. </code></pre>
  6900. </td>
  6901. </tr></tbody>
  6902. </table>
  6903. <h3 id="external-secrets.io/v1beta1.SenhaseguraProvider">SenhaseguraProvider
  6904. </h3>
  6905. <p>
  6906. (<em>Appears on:</em>
  6907. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  6908. </p>
  6909. <p>
  6910. <p>SenhaseguraProvider setup a store to sync secrets with senhasegura.</p>
  6911. </p>
  6912. <table>
  6913. <thead>
  6914. <tr>
  6915. <th>Field</th>
  6916. <th>Description</th>
  6917. </tr>
  6918. </thead>
  6919. <tbody>
  6920. <tr>
  6921. <td>
  6922. <code>url</code></br>
  6923. <em>
  6924. string
  6925. </em>
  6926. </td>
  6927. <td>
  6928. <p>URL of senhasegura</p>
  6929. </td>
  6930. </tr>
  6931. <tr>
  6932. <td>
  6933. <code>module</code></br>
  6934. <em>
  6935. <a href="#external-secrets.io/v1beta1.SenhaseguraModuleType">
  6936. SenhaseguraModuleType
  6937. </a>
  6938. </em>
  6939. </td>
  6940. <td>
  6941. <p>Module defines which senhasegura module should be used to get secrets</p>
  6942. </td>
  6943. </tr>
  6944. <tr>
  6945. <td>
  6946. <code>auth</code></br>
  6947. <em>
  6948. <a href="#external-secrets.io/v1beta1.SenhaseguraAuth">
  6949. SenhaseguraAuth
  6950. </a>
  6951. </em>
  6952. </td>
  6953. <td>
  6954. <p>Auth defines parameters to authenticate in senhasegura</p>
  6955. </td>
  6956. </tr>
  6957. <tr>
  6958. <td>
  6959. <code>ignoreSslCertificate</code></br>
  6960. <em>
  6961. bool
  6962. </em>
  6963. </td>
  6964. <td>
  6965. <p>IgnoreSslCertificate defines if SSL certificate must be ignored</p>
  6966. </td>
  6967. </tr>
  6968. </tbody>
  6969. </table>
  6970. <h3 id="external-secrets.io/v1beta1.StoreGeneratorSourceRef">StoreGeneratorSourceRef
  6971. </h3>
  6972. <p>
  6973. (<em>Appears on:</em>
  6974. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  6975. </p>
  6976. <p>
  6977. <p>StoreGeneratorSourceRef allows you to override the source
  6978. from which the secret will be pulled from.
  6979. You can define at maximum one property.</p>
  6980. </p>
  6981. <table>
  6982. <thead>
  6983. <tr>
  6984. <th>Field</th>
  6985. <th>Description</th>
  6986. </tr>
  6987. </thead>
  6988. <tbody>
  6989. <tr>
  6990. <td>
  6991. <code>storeRef</code></br>
  6992. <em>
  6993. <a href="#external-secrets.io/v1beta1.SecretStoreRef">
  6994. SecretStoreRef
  6995. </a>
  6996. </em>
  6997. </td>
  6998. <td>
  6999. <em>(Optional)</em>
  7000. </td>
  7001. </tr>
  7002. <tr>
  7003. <td>
  7004. <code>generatorRef</code></br>
  7005. <em>
  7006. <a href="#external-secrets.io/v1beta1.GeneratorRef">
  7007. GeneratorRef
  7008. </a>
  7009. </em>
  7010. </td>
  7011. <td>
  7012. <em>(Optional)</em>
  7013. <p>GeneratorRef points to a generator custom resource.</p>
  7014. </td>
  7015. </tr>
  7016. </tbody>
  7017. </table>
  7018. <h3 id="external-secrets.io/v1beta1.StoreSourceRef">StoreSourceRef
  7019. </h3>
  7020. <p>
  7021. (<em>Appears on:</em>
  7022. <a href="#external-secrets.io/v1beta1.ExternalSecretData">ExternalSecretData</a>)
  7023. </p>
  7024. <p>
  7025. <p>StoreSourceRef allows you to override the SecretStore source
  7026. from which the secret will be pulled from.
  7027. You can define at maximum one property.</p>
  7028. </p>
  7029. <table>
  7030. <thead>
  7031. <tr>
  7032. <th>Field</th>
  7033. <th>Description</th>
  7034. </tr>
  7035. </thead>
  7036. <tbody>
  7037. <tr>
  7038. <td>
  7039. <code>storeRef</code></br>
  7040. <em>
  7041. <a href="#external-secrets.io/v1beta1.SecretStoreRef">
  7042. SecretStoreRef
  7043. </a>
  7044. </em>
  7045. </td>
  7046. <td>
  7047. <em>(Optional)</em>
  7048. </td>
  7049. </tr>
  7050. <tr>
  7051. <td>
  7052. <code>generatorRef</code></br>
  7053. <em>
  7054. <a href="#external-secrets.io/v1beta1.GeneratorRef">
  7055. GeneratorRef
  7056. </a>
  7057. </em>
  7058. </td>
  7059. <td>
  7060. <p>GeneratorRef points to a generator custom resource.</p>
  7061. <p>Deprecated: The generatorRef is not implemented in .data[].
  7062. this will be removed with v1.</p>
  7063. </td>
  7064. </tr>
  7065. </tbody>
  7066. </table>
  7067. <h3 id="external-secrets.io/v1beta1.Tag">Tag
  7068. </h3>
  7069. <p>
  7070. </p>
  7071. <table>
  7072. <thead>
  7073. <tr>
  7074. <th>Field</th>
  7075. <th>Description</th>
  7076. </tr>
  7077. </thead>
  7078. <tbody>
  7079. <tr>
  7080. <td>
  7081. <code>key</code></br>
  7082. <em>
  7083. string
  7084. </em>
  7085. </td>
  7086. <td>
  7087. </td>
  7088. </tr>
  7089. <tr>
  7090. <td>
  7091. <code>value</code></br>
  7092. <em>
  7093. string
  7094. </em>
  7095. </td>
  7096. <td>
  7097. </td>
  7098. </tr>
  7099. </tbody>
  7100. </table>
  7101. <h3 id="external-secrets.io/v1beta1.TemplateEngineVersion">TemplateEngineVersion
  7102. (<code>string</code> alias)</p></h3>
  7103. <p>
  7104. (<em>Appears on:</em>
  7105. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  7106. </p>
  7107. <p>
  7108. </p>
  7109. <table>
  7110. <thead>
  7111. <tr>
  7112. <th>Value</th>
  7113. <th>Description</th>
  7114. </tr>
  7115. </thead>
  7116. <tbody><tr><td><p>&#34;v1&#34;</p></td>
  7117. <td></td>
  7118. </tr><tr><td><p>&#34;v2&#34;</p></td>
  7119. <td></td>
  7120. </tr></tbody>
  7121. </table>
  7122. <h3 id="external-secrets.io/v1beta1.TemplateFrom">TemplateFrom
  7123. </h3>
  7124. <p>
  7125. (<em>Appears on:</em>
  7126. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  7127. </p>
  7128. <p>
  7129. </p>
  7130. <table>
  7131. <thead>
  7132. <tr>
  7133. <th>Field</th>
  7134. <th>Description</th>
  7135. </tr>
  7136. </thead>
  7137. <tbody>
  7138. <tr>
  7139. <td>
  7140. <code>configMap</code></br>
  7141. <em>
  7142. <a href="#external-secrets.io/v1beta1.TemplateRef">
  7143. TemplateRef
  7144. </a>
  7145. </em>
  7146. </td>
  7147. <td>
  7148. </td>
  7149. </tr>
  7150. <tr>
  7151. <td>
  7152. <code>secret</code></br>
  7153. <em>
  7154. <a href="#external-secrets.io/v1beta1.TemplateRef">
  7155. TemplateRef
  7156. </a>
  7157. </em>
  7158. </td>
  7159. <td>
  7160. </td>
  7161. </tr>
  7162. <tr>
  7163. <td>
  7164. <code>target</code></br>
  7165. <em>
  7166. <a href="#external-secrets.io/v1beta1.TemplateTarget">
  7167. TemplateTarget
  7168. </a>
  7169. </em>
  7170. </td>
  7171. <td>
  7172. <em>(Optional)</em>
  7173. </td>
  7174. </tr>
  7175. <tr>
  7176. <td>
  7177. <code>literal</code></br>
  7178. <em>
  7179. string
  7180. </em>
  7181. </td>
  7182. <td>
  7183. <em>(Optional)</em>
  7184. </td>
  7185. </tr>
  7186. </tbody>
  7187. </table>
  7188. <h3 id="external-secrets.io/v1beta1.TemplateMergePolicy">TemplateMergePolicy
  7189. (<code>string</code> alias)</p></h3>
  7190. <p>
  7191. (<em>Appears on:</em>
  7192. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  7193. </p>
  7194. <p>
  7195. </p>
  7196. <table>
  7197. <thead>
  7198. <tr>
  7199. <th>Value</th>
  7200. <th>Description</th>
  7201. </tr>
  7202. </thead>
  7203. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  7204. <td></td>
  7205. </tr><tr><td><p>&#34;Replace&#34;</p></td>
  7206. <td></td>
  7207. </tr></tbody>
  7208. </table>
  7209. <h3 id="external-secrets.io/v1beta1.TemplateRef">TemplateRef
  7210. </h3>
  7211. <p>
  7212. (<em>Appears on:</em>
  7213. <a href="#external-secrets.io/v1beta1.TemplateFrom">TemplateFrom</a>)
  7214. </p>
  7215. <p>
  7216. </p>
  7217. <table>
  7218. <thead>
  7219. <tr>
  7220. <th>Field</th>
  7221. <th>Description</th>
  7222. </tr>
  7223. </thead>
  7224. <tbody>
  7225. <tr>
  7226. <td>
  7227. <code>name</code></br>
  7228. <em>
  7229. string
  7230. </em>
  7231. </td>
  7232. <td>
  7233. </td>
  7234. </tr>
  7235. <tr>
  7236. <td>
  7237. <code>items</code></br>
  7238. <em>
  7239. <a href="#external-secrets.io/v1beta1.TemplateRefItem">
  7240. []TemplateRefItem
  7241. </a>
  7242. </em>
  7243. </td>
  7244. <td>
  7245. </td>
  7246. </tr>
  7247. </tbody>
  7248. </table>
  7249. <h3 id="external-secrets.io/v1beta1.TemplateRefItem">TemplateRefItem
  7250. </h3>
  7251. <p>
  7252. (<em>Appears on:</em>
  7253. <a href="#external-secrets.io/v1beta1.TemplateRef">TemplateRef</a>)
  7254. </p>
  7255. <p>
  7256. </p>
  7257. <table>
  7258. <thead>
  7259. <tr>
  7260. <th>Field</th>
  7261. <th>Description</th>
  7262. </tr>
  7263. </thead>
  7264. <tbody>
  7265. <tr>
  7266. <td>
  7267. <code>key</code></br>
  7268. <em>
  7269. string
  7270. </em>
  7271. </td>
  7272. <td>
  7273. </td>
  7274. </tr>
  7275. <tr>
  7276. <td>
  7277. <code>templateAs</code></br>
  7278. <em>
  7279. <a href="#external-secrets.io/v1beta1.TemplateScope">
  7280. TemplateScope
  7281. </a>
  7282. </em>
  7283. </td>
  7284. <td>
  7285. </td>
  7286. </tr>
  7287. </tbody>
  7288. </table>
  7289. <h3 id="external-secrets.io/v1beta1.TemplateScope">TemplateScope
  7290. (<code>string</code> alias)</p></h3>
  7291. <p>
  7292. (<em>Appears on:</em>
  7293. <a href="#external-secrets.io/v1beta1.TemplateRefItem">TemplateRefItem</a>)
  7294. </p>
  7295. <p>
  7296. </p>
  7297. <table>
  7298. <thead>
  7299. <tr>
  7300. <th>Value</th>
  7301. <th>Description</th>
  7302. </tr>
  7303. </thead>
  7304. <tbody><tr><td><p>&#34;KeysAndValues&#34;</p></td>
  7305. <td></td>
  7306. </tr><tr><td><p>&#34;Values&#34;</p></td>
  7307. <td></td>
  7308. </tr></tbody>
  7309. </table>
  7310. <h3 id="external-secrets.io/v1beta1.TemplateTarget">TemplateTarget
  7311. (<code>string</code> alias)</p></h3>
  7312. <p>
  7313. (<em>Appears on:</em>
  7314. <a href="#external-secrets.io/v1beta1.TemplateFrom">TemplateFrom</a>)
  7315. </p>
  7316. <p>
  7317. </p>
  7318. <table>
  7319. <thead>
  7320. <tr>
  7321. <th>Value</th>
  7322. <th>Description</th>
  7323. </tr>
  7324. </thead>
  7325. <tbody><tr><td><p>&#34;Annotations&#34;</p></td>
  7326. <td></td>
  7327. </tr><tr><td><p>&#34;Data&#34;</p></td>
  7328. <td></td>
  7329. </tr><tr><td><p>&#34;Labels&#34;</p></td>
  7330. <td></td>
  7331. </tr></tbody>
  7332. </table>
  7333. <h3 id="external-secrets.io/v1beta1.TokenAuth">TokenAuth
  7334. </h3>
  7335. <p>
  7336. (<em>Appears on:</em>
  7337. <a href="#external-secrets.io/v1beta1.KubernetesAuth">KubernetesAuth</a>)
  7338. </p>
  7339. <p>
  7340. </p>
  7341. <table>
  7342. <thead>
  7343. <tr>
  7344. <th>Field</th>
  7345. <th>Description</th>
  7346. </tr>
  7347. </thead>
  7348. <tbody>
  7349. <tr>
  7350. <td>
  7351. <code>bearerToken</code></br>
  7352. <em>
  7353. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7354. External Secrets meta/v1.SecretKeySelector
  7355. </a>
  7356. </em>
  7357. </td>
  7358. <td>
  7359. </td>
  7360. </tr>
  7361. </tbody>
  7362. </table>
  7363. <h3 id="external-secrets.io/v1beta1.ValidationResult">ValidationResult
  7364. (<code>byte</code> alias)</p></h3>
  7365. <p>
  7366. </p>
  7367. <table>
  7368. <thead>
  7369. <tr>
  7370. <th>Value</th>
  7371. <th>Description</th>
  7372. </tr>
  7373. </thead>
  7374. <tbody><tr><td><p>2</p></td>
  7375. <td><p>Error indicates that there is a misconfiguration.</p>
  7376. </td>
  7377. </tr><tr><td><p>0</p></td>
  7378. <td><p>Ready indicates that the client is configured correctly
  7379. and can be used.</p>
  7380. </td>
  7381. </tr><tr><td><p>1</p></td>
  7382. <td><p>Unknown indicates that the client can be used
  7383. but information is missing and it can not be validated.</p>
  7384. </td>
  7385. </tr></tbody>
  7386. </table>
  7387. <h3 id="external-secrets.io/v1beta1.VaultAppRole">VaultAppRole
  7388. </h3>
  7389. <p>
  7390. (<em>Appears on:</em>
  7391. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  7392. </p>
  7393. <p>
  7394. <p>VaultAppRole authenticates with Vault using the App Role auth mechanism,
  7395. with the role and secret stored in a Kubernetes Secret resource.</p>
  7396. </p>
  7397. <table>
  7398. <thead>
  7399. <tr>
  7400. <th>Field</th>
  7401. <th>Description</th>
  7402. </tr>
  7403. </thead>
  7404. <tbody>
  7405. <tr>
  7406. <td>
  7407. <code>path</code></br>
  7408. <em>
  7409. string
  7410. </em>
  7411. </td>
  7412. <td>
  7413. <p>Path where the App Role authentication backend is mounted
  7414. in Vault, e.g: &ldquo;approle&rdquo;</p>
  7415. </td>
  7416. </tr>
  7417. <tr>
  7418. <td>
  7419. <code>roleId</code></br>
  7420. <em>
  7421. string
  7422. </em>
  7423. </td>
  7424. <td>
  7425. <em>(Optional)</em>
  7426. <p>RoleID configured in the App Role authentication backend when setting
  7427. up the authentication backend in Vault.</p>
  7428. </td>
  7429. </tr>
  7430. <tr>
  7431. <td>
  7432. <code>roleRef</code></br>
  7433. <em>
  7434. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7435. External Secrets meta/v1.SecretKeySelector
  7436. </a>
  7437. </em>
  7438. </td>
  7439. <td>
  7440. <em>(Optional)</em>
  7441. <p>Reference to a key in a Secret that contains the App Role ID used
  7442. to authenticate with Vault.
  7443. The <code>key</code> field must be specified and denotes which entry within the Secret
  7444. resource is used as the app role id.</p>
  7445. </td>
  7446. </tr>
  7447. <tr>
  7448. <td>
  7449. <code>secretRef</code></br>
  7450. <em>
  7451. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7452. External Secrets meta/v1.SecretKeySelector
  7453. </a>
  7454. </em>
  7455. </td>
  7456. <td>
  7457. <p>Reference to a key in a Secret that contains the App Role secret used
  7458. to authenticate with Vault.
  7459. The <code>key</code> field must be specified and denotes which entry within the Secret
  7460. resource is used as the app role secret.</p>
  7461. </td>
  7462. </tr>
  7463. </tbody>
  7464. </table>
  7465. <h3 id="external-secrets.io/v1beta1.VaultAuth">VaultAuth
  7466. </h3>
  7467. <p>
  7468. (<em>Appears on:</em>
  7469. <a href="#external-secrets.io/v1beta1.VaultProvider">VaultProvider</a>)
  7470. </p>
  7471. <p>
  7472. <p>VaultAuth is the configuration used to authenticate with a Vault server.
  7473. Only one of <code>tokenSecretRef</code>, <code>appRole</code>, <code>kubernetes</code>, <code>ldap</code>, <code>userPass</code>, <code>jwt</code> or <code>cert</code>
  7474. can be specified.</p>
  7475. </p>
  7476. <table>
  7477. <thead>
  7478. <tr>
  7479. <th>Field</th>
  7480. <th>Description</th>
  7481. </tr>
  7482. </thead>
  7483. <tbody>
  7484. <tr>
  7485. <td>
  7486. <code>tokenSecretRef</code></br>
  7487. <em>
  7488. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7489. External Secrets meta/v1.SecretKeySelector
  7490. </a>
  7491. </em>
  7492. </td>
  7493. <td>
  7494. <em>(Optional)</em>
  7495. <p>TokenSecretRef authenticates with Vault by presenting a token.</p>
  7496. </td>
  7497. </tr>
  7498. <tr>
  7499. <td>
  7500. <code>appRole</code></br>
  7501. <em>
  7502. <a href="#external-secrets.io/v1beta1.VaultAppRole">
  7503. VaultAppRole
  7504. </a>
  7505. </em>
  7506. </td>
  7507. <td>
  7508. <em>(Optional)</em>
  7509. <p>AppRole authenticates with Vault using the App Role auth mechanism,
  7510. with the role and secret stored in a Kubernetes Secret resource.</p>
  7511. </td>
  7512. </tr>
  7513. <tr>
  7514. <td>
  7515. <code>kubernetes</code></br>
  7516. <em>
  7517. <a href="#external-secrets.io/v1beta1.VaultKubernetesAuth">
  7518. VaultKubernetesAuth
  7519. </a>
  7520. </em>
  7521. </td>
  7522. <td>
  7523. <em>(Optional)</em>
  7524. <p>Kubernetes authenticates with Vault by passing the ServiceAccount
  7525. token stored in the named Secret resource to the Vault server.</p>
  7526. </td>
  7527. </tr>
  7528. <tr>
  7529. <td>
  7530. <code>ldap</code></br>
  7531. <em>
  7532. <a href="#external-secrets.io/v1beta1.VaultLdapAuth">
  7533. VaultLdapAuth
  7534. </a>
  7535. </em>
  7536. </td>
  7537. <td>
  7538. <em>(Optional)</em>
  7539. <p>Ldap authenticates with Vault by passing username/password pair using
  7540. the LDAP authentication method</p>
  7541. </td>
  7542. </tr>
  7543. <tr>
  7544. <td>
  7545. <code>jwt</code></br>
  7546. <em>
  7547. <a href="#external-secrets.io/v1beta1.VaultJwtAuth">
  7548. VaultJwtAuth
  7549. </a>
  7550. </em>
  7551. </td>
  7552. <td>
  7553. <em>(Optional)</em>
  7554. <p>Jwt authenticates with Vault by passing role and JWT token using the
  7555. JWT/OIDC authentication method</p>
  7556. </td>
  7557. </tr>
  7558. <tr>
  7559. <td>
  7560. <code>cert</code></br>
  7561. <em>
  7562. <a href="#external-secrets.io/v1beta1.VaultCertAuth">
  7563. VaultCertAuth
  7564. </a>
  7565. </em>
  7566. </td>
  7567. <td>
  7568. <em>(Optional)</em>
  7569. <p>Cert authenticates with TLS Certificates by passing client certificate, private key and ca certificate
  7570. Cert authentication method</p>
  7571. </td>
  7572. </tr>
  7573. <tr>
  7574. <td>
  7575. <code>iam</code></br>
  7576. <em>
  7577. <a href="#external-secrets.io/v1beta1.VaultIamAuth">
  7578. VaultIamAuth
  7579. </a>
  7580. </em>
  7581. </td>
  7582. <td>
  7583. <em>(Optional)</em>
  7584. <p>Iam authenticates with vault by passing a special AWS request signed with AWS IAM credentials
  7585. AWS IAM authentication method</p>
  7586. </td>
  7587. </tr>
  7588. <tr>
  7589. <td>
  7590. <code>userPass</code></br>
  7591. <em>
  7592. <a href="#external-secrets.io/v1beta1.VaultUserPassAuth">
  7593. VaultUserPassAuth
  7594. </a>
  7595. </em>
  7596. </td>
  7597. <td>
  7598. <em>(Optional)</em>
  7599. <p>UserPass authenticates with Vault by passing username/password pair</p>
  7600. </td>
  7601. </tr>
  7602. </tbody>
  7603. </table>
  7604. <h3 id="external-secrets.io/v1beta1.VaultAwsAuth">VaultAwsAuth
  7605. </h3>
  7606. <p>
  7607. <p>VaultAwsAuth tells the controller how to do authentication with aws.
  7608. Only one of secretRef or jwt can be specified.
  7609. if none is specified the controller will try to load credentials from its own service account assuming it is IRSA enabled.</p>
  7610. </p>
  7611. <table>
  7612. <thead>
  7613. <tr>
  7614. <th>Field</th>
  7615. <th>Description</th>
  7616. </tr>
  7617. </thead>
  7618. <tbody>
  7619. <tr>
  7620. <td>
  7621. <code>secretRef</code></br>
  7622. <em>
  7623. <a href="#external-secrets.io/v1beta1.VaultAwsAuthSecretRef">
  7624. VaultAwsAuthSecretRef
  7625. </a>
  7626. </em>
  7627. </td>
  7628. <td>
  7629. <em>(Optional)</em>
  7630. </td>
  7631. </tr>
  7632. <tr>
  7633. <td>
  7634. <code>jwt</code></br>
  7635. <em>
  7636. <a href="#external-secrets.io/v1beta1.VaultAwsJWTAuth">
  7637. VaultAwsJWTAuth
  7638. </a>
  7639. </em>
  7640. </td>
  7641. <td>
  7642. <em>(Optional)</em>
  7643. </td>
  7644. </tr>
  7645. </tbody>
  7646. </table>
  7647. <h3 id="external-secrets.io/v1beta1.VaultAwsAuthSecretRef">VaultAwsAuthSecretRef
  7648. </h3>
  7649. <p>
  7650. (<em>Appears on:</em>
  7651. <a href="#external-secrets.io/v1beta1.VaultAwsAuth">VaultAwsAuth</a>,
  7652. <a href="#external-secrets.io/v1beta1.VaultIamAuth">VaultIamAuth</a>)
  7653. </p>
  7654. <p>
  7655. <p>VaultAWSAuthSecretRef holds secret references for AWS credentials
  7656. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</p>
  7657. </p>
  7658. <table>
  7659. <thead>
  7660. <tr>
  7661. <th>Field</th>
  7662. <th>Description</th>
  7663. </tr>
  7664. </thead>
  7665. <tbody>
  7666. <tr>
  7667. <td>
  7668. <code>accessKeyIDSecretRef</code></br>
  7669. <em>
  7670. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7671. External Secrets meta/v1.SecretKeySelector
  7672. </a>
  7673. </em>
  7674. </td>
  7675. <td>
  7676. <p>The AccessKeyID is used for authentication</p>
  7677. </td>
  7678. </tr>
  7679. <tr>
  7680. <td>
  7681. <code>secretAccessKeySecretRef</code></br>
  7682. <em>
  7683. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7684. External Secrets meta/v1.SecretKeySelector
  7685. </a>
  7686. </em>
  7687. </td>
  7688. <td>
  7689. <p>The SecretAccessKey is used for authentication</p>
  7690. </td>
  7691. </tr>
  7692. <tr>
  7693. <td>
  7694. <code>sessionTokenSecretRef</code></br>
  7695. <em>
  7696. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7697. External Secrets meta/v1.SecretKeySelector
  7698. </a>
  7699. </em>
  7700. </td>
  7701. <td>
  7702. <p>The SessionToken used for authentication
  7703. This must be defined if AccessKeyID and SecretAccessKey are temporary credentials
  7704. see: <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html">https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html</a></p>
  7705. </td>
  7706. </tr>
  7707. </tbody>
  7708. </table>
  7709. <h3 id="external-secrets.io/v1beta1.VaultAwsJWTAuth">VaultAwsJWTAuth
  7710. </h3>
  7711. <p>
  7712. (<em>Appears on:</em>
  7713. <a href="#external-secrets.io/v1beta1.VaultAwsAuth">VaultAwsAuth</a>,
  7714. <a href="#external-secrets.io/v1beta1.VaultIamAuth">VaultIamAuth</a>)
  7715. </p>
  7716. <p>
  7717. <p>Authenticate against AWS using service account tokens.</p>
  7718. </p>
  7719. <table>
  7720. <thead>
  7721. <tr>
  7722. <th>Field</th>
  7723. <th>Description</th>
  7724. </tr>
  7725. </thead>
  7726. <tbody>
  7727. <tr>
  7728. <td>
  7729. <code>serviceAccountRef</code></br>
  7730. <em>
  7731. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  7732. External Secrets meta/v1.ServiceAccountSelector
  7733. </a>
  7734. </em>
  7735. </td>
  7736. <td>
  7737. </td>
  7738. </tr>
  7739. </tbody>
  7740. </table>
  7741. <h3 id="external-secrets.io/v1beta1.VaultCertAuth">VaultCertAuth
  7742. </h3>
  7743. <p>
  7744. (<em>Appears on:</em>
  7745. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  7746. </p>
  7747. <p>
  7748. <p>VaultJwtAuth authenticates with Vault using the JWT/OIDC authentication
  7749. method, with the role name and token stored in a Kubernetes Secret resource.</p>
  7750. </p>
  7751. <table>
  7752. <thead>
  7753. <tr>
  7754. <th>Field</th>
  7755. <th>Description</th>
  7756. </tr>
  7757. </thead>
  7758. <tbody>
  7759. <tr>
  7760. <td>
  7761. <code>clientCert</code></br>
  7762. <em>
  7763. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7764. External Secrets meta/v1.SecretKeySelector
  7765. </a>
  7766. </em>
  7767. </td>
  7768. <td>
  7769. <em>(Optional)</em>
  7770. <p>ClientCert is a certificate to authenticate using the Cert Vault
  7771. authentication method</p>
  7772. </td>
  7773. </tr>
  7774. <tr>
  7775. <td>
  7776. <code>secretRef</code></br>
  7777. <em>
  7778. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7779. External Secrets meta/v1.SecretKeySelector
  7780. </a>
  7781. </em>
  7782. </td>
  7783. <td>
  7784. <p>SecretRef to a key in a Secret resource containing client private key to
  7785. authenticate with Vault using the Cert authentication method</p>
  7786. </td>
  7787. </tr>
  7788. </tbody>
  7789. </table>
  7790. <h3 id="external-secrets.io/v1beta1.VaultClientTLS">VaultClientTLS
  7791. </h3>
  7792. <p>
  7793. (<em>Appears on:</em>
  7794. <a href="#external-secrets.io/v1beta1.VaultProvider">VaultProvider</a>)
  7795. </p>
  7796. <p>
  7797. <p>VaultClientTLS is the configuration used for client side related TLS communication,
  7798. when the Vault server requires mutual authentication.</p>
  7799. </p>
  7800. <table>
  7801. <thead>
  7802. <tr>
  7803. <th>Field</th>
  7804. <th>Description</th>
  7805. </tr>
  7806. </thead>
  7807. <tbody>
  7808. <tr>
  7809. <td>
  7810. <code>certSecretRef</code></br>
  7811. <em>
  7812. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7813. External Secrets meta/v1.SecretKeySelector
  7814. </a>
  7815. </em>
  7816. </td>
  7817. <td>
  7818. <p>CertSecretRef is a certificate added to the transport layer
  7819. when communicating with the Vault server.
  7820. If no key for the Secret is specified, external-secret will default to &lsquo;tls.crt&rsquo;.</p>
  7821. </td>
  7822. </tr>
  7823. <tr>
  7824. <td>
  7825. <code>keySecretRef</code></br>
  7826. <em>
  7827. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7828. External Secrets meta/v1.SecretKeySelector
  7829. </a>
  7830. </em>
  7831. </td>
  7832. <td>
  7833. <p>KeySecretRef to a key in a Secret resource containing client private key
  7834. added to the transport layer when communicating with the Vault server.
  7835. If no key for the Secret is specified, external-secret will default to &lsquo;tls.key&rsquo;.</p>
  7836. </td>
  7837. </tr>
  7838. </tbody>
  7839. </table>
  7840. <h3 id="external-secrets.io/v1beta1.VaultIamAuth">VaultIamAuth
  7841. </h3>
  7842. <p>
  7843. (<em>Appears on:</em>
  7844. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  7845. </p>
  7846. <p>
  7847. <p>VaultIamAuth authenticates with Vault using the Vault&rsquo;s AWS IAM authentication method. Refer: <a href="https://developer.hashicorp.com/vault/docs/auth/aws">https://developer.hashicorp.com/vault/docs/auth/aws</a></p>
  7848. </p>
  7849. <table>
  7850. <thead>
  7851. <tr>
  7852. <th>Field</th>
  7853. <th>Description</th>
  7854. </tr>
  7855. </thead>
  7856. <tbody>
  7857. <tr>
  7858. <td>
  7859. <code>path</code></br>
  7860. <em>
  7861. string
  7862. </em>
  7863. </td>
  7864. <td>
  7865. <p>Path where the AWS auth method is enabled in Vault, e.g: &ldquo;aws&rdquo;</p>
  7866. </td>
  7867. </tr>
  7868. <tr>
  7869. <td>
  7870. <code>region</code></br>
  7871. <em>
  7872. string
  7873. </em>
  7874. </td>
  7875. <td>
  7876. <p>AWS region</p>
  7877. </td>
  7878. </tr>
  7879. <tr>
  7880. <td>
  7881. <code>role</code></br>
  7882. <em>
  7883. string
  7884. </em>
  7885. </td>
  7886. <td>
  7887. <p>This is the AWS role to be assumed before talking to vault</p>
  7888. </td>
  7889. </tr>
  7890. <tr>
  7891. <td>
  7892. <code>vaultRole</code></br>
  7893. <em>
  7894. string
  7895. </em>
  7896. </td>
  7897. <td>
  7898. <p>Vault Role. In vault, a role describes an identity with a set of permissions, groups, or policies you want to attach a user of the secrets engine</p>
  7899. </td>
  7900. </tr>
  7901. <tr>
  7902. <td>
  7903. <code>externalID</code></br>
  7904. <em>
  7905. string
  7906. </em>
  7907. </td>
  7908. <td>
  7909. <p>AWS External ID set on assumed IAM roles</p>
  7910. </td>
  7911. </tr>
  7912. <tr>
  7913. <td>
  7914. <code>vaultAwsIamServerID</code></br>
  7915. <em>
  7916. string
  7917. </em>
  7918. </td>
  7919. <td>
  7920. <p>X-Vault-AWS-IAM-Server-ID is an additional header used by Vault IAM auth method to mitigate against different types of replay attacks. More details here: <a href="https://developer.hashicorp.com/vault/docs/auth/aws">https://developer.hashicorp.com/vault/docs/auth/aws</a></p>
  7921. </td>
  7922. </tr>
  7923. <tr>
  7924. <td>
  7925. <code>secretRef</code></br>
  7926. <em>
  7927. <a href="#external-secrets.io/v1beta1.VaultAwsAuthSecretRef">
  7928. VaultAwsAuthSecretRef
  7929. </a>
  7930. </em>
  7931. </td>
  7932. <td>
  7933. <em>(Optional)</em>
  7934. <p>Specify credentials in a Secret object</p>
  7935. </td>
  7936. </tr>
  7937. <tr>
  7938. <td>
  7939. <code>jwt</code></br>
  7940. <em>
  7941. <a href="#external-secrets.io/v1beta1.VaultAwsJWTAuth">
  7942. VaultAwsJWTAuth
  7943. </a>
  7944. </em>
  7945. </td>
  7946. <td>
  7947. <em>(Optional)</em>
  7948. <p>Specify a service account with IRSA enabled</p>
  7949. </td>
  7950. </tr>
  7951. </tbody>
  7952. </table>
  7953. <h3 id="external-secrets.io/v1beta1.VaultJwtAuth">VaultJwtAuth
  7954. </h3>
  7955. <p>
  7956. (<em>Appears on:</em>
  7957. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  7958. </p>
  7959. <p>
  7960. <p>VaultJwtAuth authenticates with Vault using the JWT/OIDC authentication
  7961. method, with the role name and a token stored in a Kubernetes Secret resource or
  7962. a Kubernetes service account token retrieved via <code>TokenRequest</code>.</p>
  7963. </p>
  7964. <table>
  7965. <thead>
  7966. <tr>
  7967. <th>Field</th>
  7968. <th>Description</th>
  7969. </tr>
  7970. </thead>
  7971. <tbody>
  7972. <tr>
  7973. <td>
  7974. <code>path</code></br>
  7975. <em>
  7976. string
  7977. </em>
  7978. </td>
  7979. <td>
  7980. <p>Path where the JWT authentication backend is mounted
  7981. in Vault, e.g: &ldquo;jwt&rdquo;</p>
  7982. </td>
  7983. </tr>
  7984. <tr>
  7985. <td>
  7986. <code>role</code></br>
  7987. <em>
  7988. string
  7989. </em>
  7990. </td>
  7991. <td>
  7992. <em>(Optional)</em>
  7993. <p>Role is a JWT role to authenticate using the JWT/OIDC Vault
  7994. authentication method</p>
  7995. </td>
  7996. </tr>
  7997. <tr>
  7998. <td>
  7999. <code>secretRef</code></br>
  8000. <em>
  8001. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8002. External Secrets meta/v1.SecretKeySelector
  8003. </a>
  8004. </em>
  8005. </td>
  8006. <td>
  8007. <em>(Optional)</em>
  8008. <p>Optional SecretRef that refers to a key in a Secret resource containing JWT token to
  8009. authenticate with Vault using the JWT/OIDC authentication method.</p>
  8010. </td>
  8011. </tr>
  8012. <tr>
  8013. <td>
  8014. <code>kubernetesServiceAccountToken</code></br>
  8015. <em>
  8016. <a href="#external-secrets.io/v1beta1.VaultKubernetesServiceAccountTokenAuth">
  8017. VaultKubernetesServiceAccountTokenAuth
  8018. </a>
  8019. </em>
  8020. </td>
  8021. <td>
  8022. <em>(Optional)</em>
  8023. <p>Optional ServiceAccountToken specifies the Kubernetes service account for which to request
  8024. a token for with the <code>TokenRequest</code> API.</p>
  8025. </td>
  8026. </tr>
  8027. </tbody>
  8028. </table>
  8029. <h3 id="external-secrets.io/v1beta1.VaultKVStoreVersion">VaultKVStoreVersion
  8030. (<code>string</code> alias)</p></h3>
  8031. <p>
  8032. (<em>Appears on:</em>
  8033. <a href="#external-secrets.io/v1beta1.VaultProvider">VaultProvider</a>)
  8034. </p>
  8035. <p>
  8036. </p>
  8037. <table>
  8038. <thead>
  8039. <tr>
  8040. <th>Value</th>
  8041. <th>Description</th>
  8042. </tr>
  8043. </thead>
  8044. <tbody><tr><td><p>&#34;v1&#34;</p></td>
  8045. <td></td>
  8046. </tr><tr><td><p>&#34;v2&#34;</p></td>
  8047. <td></td>
  8048. </tr></tbody>
  8049. </table>
  8050. <h3 id="external-secrets.io/v1beta1.VaultKubernetesAuth">VaultKubernetesAuth
  8051. </h3>
  8052. <p>
  8053. (<em>Appears on:</em>
  8054. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  8055. </p>
  8056. <p>
  8057. <p>Authenticate against Vault using a Kubernetes ServiceAccount token stored in
  8058. a Secret.</p>
  8059. </p>
  8060. <table>
  8061. <thead>
  8062. <tr>
  8063. <th>Field</th>
  8064. <th>Description</th>
  8065. </tr>
  8066. </thead>
  8067. <tbody>
  8068. <tr>
  8069. <td>
  8070. <code>mountPath</code></br>
  8071. <em>
  8072. string
  8073. </em>
  8074. </td>
  8075. <td>
  8076. <p>Path where the Kubernetes authentication backend is mounted in Vault, e.g:
  8077. &ldquo;kubernetes&rdquo;</p>
  8078. </td>
  8079. </tr>
  8080. <tr>
  8081. <td>
  8082. <code>serviceAccountRef</code></br>
  8083. <em>
  8084. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  8085. External Secrets meta/v1.ServiceAccountSelector
  8086. </a>
  8087. </em>
  8088. </td>
  8089. <td>
  8090. <em>(Optional)</em>
  8091. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  8092. If the service account is specified, the service account secret token JWT will be used
  8093. for authenticating with Vault. If the service account selector is not supplied,
  8094. the secretRef will be used instead.</p>
  8095. </td>
  8096. </tr>
  8097. <tr>
  8098. <td>
  8099. <code>secretRef</code></br>
  8100. <em>
  8101. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8102. External Secrets meta/v1.SecretKeySelector
  8103. </a>
  8104. </em>
  8105. </td>
  8106. <td>
  8107. <em>(Optional)</em>
  8108. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  8109. for authenticating with Vault. If a name is specified without a key,
  8110. <code>token</code> is the default. If one is not specified, the one bound to
  8111. the controller will be used.</p>
  8112. </td>
  8113. </tr>
  8114. <tr>
  8115. <td>
  8116. <code>role</code></br>
  8117. <em>
  8118. string
  8119. </em>
  8120. </td>
  8121. <td>
  8122. <p>A required field containing the Vault Role to assume. A Role binds a
  8123. Kubernetes ServiceAccount with a set of Vault policies.</p>
  8124. </td>
  8125. </tr>
  8126. </tbody>
  8127. </table>
  8128. <h3 id="external-secrets.io/v1beta1.VaultKubernetesServiceAccountTokenAuth">VaultKubernetesServiceAccountTokenAuth
  8129. </h3>
  8130. <p>
  8131. (<em>Appears on:</em>
  8132. <a href="#external-secrets.io/v1beta1.VaultJwtAuth">VaultJwtAuth</a>)
  8133. </p>
  8134. <p>
  8135. <p>VaultKubernetesServiceAccountTokenAuth authenticates with Vault using a temporary
  8136. Kubernetes service account token retrieved by the <code>TokenRequest</code> API.</p>
  8137. </p>
  8138. <table>
  8139. <thead>
  8140. <tr>
  8141. <th>Field</th>
  8142. <th>Description</th>
  8143. </tr>
  8144. </thead>
  8145. <tbody>
  8146. <tr>
  8147. <td>
  8148. <code>serviceAccountRef</code></br>
  8149. <em>
  8150. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  8151. External Secrets meta/v1.ServiceAccountSelector
  8152. </a>
  8153. </em>
  8154. </td>
  8155. <td>
  8156. <p>Service account field containing the name of a kubernetes ServiceAccount.</p>
  8157. </td>
  8158. </tr>
  8159. <tr>
  8160. <td>
  8161. <code>audiences</code></br>
  8162. <em>
  8163. []string
  8164. </em>
  8165. </td>
  8166. <td>
  8167. <em>(Optional)</em>
  8168. <p>Optional audiences field that will be used to request a temporary Kubernetes service
  8169. account token for the service account referenced by <code>serviceAccountRef</code>.
  8170. Defaults to a single audience <code>vault</code> it not specified.
  8171. Deprecated: use serviceAccountRef.Audiences instead</p>
  8172. </td>
  8173. </tr>
  8174. <tr>
  8175. <td>
  8176. <code>expirationSeconds</code></br>
  8177. <em>
  8178. int64
  8179. </em>
  8180. </td>
  8181. <td>
  8182. <em>(Optional)</em>
  8183. <p>Optional expiration time in seconds that will be used to request a temporary
  8184. Kubernetes service account token for the service account referenced by
  8185. <code>serviceAccountRef</code>.
  8186. Deprecated: this will be removed in the future.
  8187. Defaults to 10 minutes.</p>
  8188. </td>
  8189. </tr>
  8190. </tbody>
  8191. </table>
  8192. <h3 id="external-secrets.io/v1beta1.VaultLdapAuth">VaultLdapAuth
  8193. </h3>
  8194. <p>
  8195. (<em>Appears on:</em>
  8196. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  8197. </p>
  8198. <p>
  8199. <p>VaultLdapAuth authenticates with Vault using the LDAP authentication method,
  8200. with the username and password stored in a Kubernetes Secret resource.</p>
  8201. </p>
  8202. <table>
  8203. <thead>
  8204. <tr>
  8205. <th>Field</th>
  8206. <th>Description</th>
  8207. </tr>
  8208. </thead>
  8209. <tbody>
  8210. <tr>
  8211. <td>
  8212. <code>path</code></br>
  8213. <em>
  8214. string
  8215. </em>
  8216. </td>
  8217. <td>
  8218. <p>Path where the LDAP authentication backend is mounted
  8219. in Vault, e.g: &ldquo;ldap&rdquo;</p>
  8220. </td>
  8221. </tr>
  8222. <tr>
  8223. <td>
  8224. <code>username</code></br>
  8225. <em>
  8226. string
  8227. </em>
  8228. </td>
  8229. <td>
  8230. <p>Username is a LDAP user name used to authenticate using the LDAP Vault
  8231. authentication method</p>
  8232. </td>
  8233. </tr>
  8234. <tr>
  8235. <td>
  8236. <code>secretRef</code></br>
  8237. <em>
  8238. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8239. External Secrets meta/v1.SecretKeySelector
  8240. </a>
  8241. </em>
  8242. </td>
  8243. <td>
  8244. <p>SecretRef to a key in a Secret resource containing password for the LDAP
  8245. user used to authenticate with Vault using the LDAP authentication
  8246. method</p>
  8247. </td>
  8248. </tr>
  8249. </tbody>
  8250. </table>
  8251. <h3 id="external-secrets.io/v1beta1.VaultProvider">VaultProvider
  8252. </h3>
  8253. <p>
  8254. (<em>Appears on:</em>
  8255. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  8256. </p>
  8257. <p>
  8258. <p>Configures an store to sync secrets using a HashiCorp Vault
  8259. KV backend.</p>
  8260. </p>
  8261. <table>
  8262. <thead>
  8263. <tr>
  8264. <th>Field</th>
  8265. <th>Description</th>
  8266. </tr>
  8267. </thead>
  8268. <tbody>
  8269. <tr>
  8270. <td>
  8271. <code>auth</code></br>
  8272. <em>
  8273. <a href="#external-secrets.io/v1beta1.VaultAuth">
  8274. VaultAuth
  8275. </a>
  8276. </em>
  8277. </td>
  8278. <td>
  8279. <p>Auth configures how secret-manager authenticates with the Vault server.</p>
  8280. </td>
  8281. </tr>
  8282. <tr>
  8283. <td>
  8284. <code>server</code></br>
  8285. <em>
  8286. string
  8287. </em>
  8288. </td>
  8289. <td>
  8290. <p>Server is the connection address for the Vault server, e.g: &ldquo;<a href="https://vault.example.com:8200&quot;">https://vault.example.com:8200&rdquo;</a>.</p>
  8291. </td>
  8292. </tr>
  8293. <tr>
  8294. <td>
  8295. <code>path</code></br>
  8296. <em>
  8297. string
  8298. </em>
  8299. </td>
  8300. <td>
  8301. <em>(Optional)</em>
  8302. <p>Path is the mount path of the Vault KV backend endpoint, e.g:
  8303. &ldquo;secret&rdquo;. The v2 KV secret engine version specific &ldquo;/data&rdquo; path suffix
  8304. for fetching secrets from Vault is optional and will be appended
  8305. if not present in specified path.</p>
  8306. </td>
  8307. </tr>
  8308. <tr>
  8309. <td>
  8310. <code>version</code></br>
  8311. <em>
  8312. <a href="#external-secrets.io/v1beta1.VaultKVStoreVersion">
  8313. VaultKVStoreVersion
  8314. </a>
  8315. </em>
  8316. </td>
  8317. <td>
  8318. <p>Version is the Vault KV secret engine version. This can be either &ldquo;v1&rdquo; or
  8319. &ldquo;v2&rdquo;. Version defaults to &ldquo;v2&rdquo;.</p>
  8320. </td>
  8321. </tr>
  8322. <tr>
  8323. <td>
  8324. <code>namespace</code></br>
  8325. <em>
  8326. string
  8327. </em>
  8328. </td>
  8329. <td>
  8330. <em>(Optional)</em>
  8331. <p>Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows
  8332. Vault environments to support Secure Multi-tenancy. e.g: &ldquo;ns1&rdquo;.
  8333. More about namespaces can be found here <a href="https://www.vaultproject.io/docs/enterprise/namespaces">https://www.vaultproject.io/docs/enterprise/namespaces</a></p>
  8334. </td>
  8335. </tr>
  8336. <tr>
  8337. <td>
  8338. <code>caBundle</code></br>
  8339. <em>
  8340. []byte
  8341. </em>
  8342. </td>
  8343. <td>
  8344. <em>(Optional)</em>
  8345. <p>PEM encoded CA bundle used to validate Vault server certificate. Only used
  8346. if the Server URL is using HTTPS protocol. This parameter is ignored for
  8347. plain HTTP protocol connection. If not set the system root certificates
  8348. are used to validate the TLS connection.</p>
  8349. </td>
  8350. </tr>
  8351. <tr>
  8352. <td>
  8353. <code>tls</code></br>
  8354. <em>
  8355. <a href="#external-secrets.io/v1beta1.VaultClientTLS">
  8356. VaultClientTLS
  8357. </a>
  8358. </em>
  8359. </td>
  8360. <td>
  8361. <em>(Optional)</em>
  8362. <p>The configuration used for client side related TLS communication, when the Vault server
  8363. requires mutual authentication. Only used if the Server URL is using HTTPS protocol.
  8364. This parameter is ignored for plain HTTP protocol connection.
  8365. It&rsquo;s worth noting this configuration is different from the &ldquo;TLS certificates auth method&rdquo;,
  8366. which is available under the <code>auth.cert</code> section.</p>
  8367. </td>
  8368. </tr>
  8369. <tr>
  8370. <td>
  8371. <code>caProvider</code></br>
  8372. <em>
  8373. <a href="#external-secrets.io/v1beta1.CAProvider">
  8374. CAProvider
  8375. </a>
  8376. </em>
  8377. </td>
  8378. <td>
  8379. <em>(Optional)</em>
  8380. <p>The provider for the CA bundle to use to validate Vault server certificate.</p>
  8381. </td>
  8382. </tr>
  8383. <tr>
  8384. <td>
  8385. <code>readYourWrites</code></br>
  8386. <em>
  8387. bool
  8388. </em>
  8389. </td>
  8390. <td>
  8391. <em>(Optional)</em>
  8392. <p>ReadYourWrites ensures isolated read-after-write semantics by
  8393. providing discovered cluster replication states in each request.
  8394. More information about eventual consistency in Vault can be found here
  8395. <a href="https://www.vaultproject.io/docs/enterprise/consistency">https://www.vaultproject.io/docs/enterprise/consistency</a></p>
  8396. </td>
  8397. </tr>
  8398. <tr>
  8399. <td>
  8400. <code>forwardInconsistent</code></br>
  8401. <em>
  8402. bool
  8403. </em>
  8404. </td>
  8405. <td>
  8406. <em>(Optional)</em>
  8407. <p>ForwardInconsistent tells Vault to forward read-after-write requests to the Vault
  8408. leader instead of simply retrying within a loop. This can increase performance if
  8409. the option is enabled serverside.
  8410. <a href="https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header">https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header</a></p>
  8411. </td>
  8412. </tr>
  8413. </tbody>
  8414. </table>
  8415. <h3 id="external-secrets.io/v1beta1.VaultUserPassAuth">VaultUserPassAuth
  8416. </h3>
  8417. <p>
  8418. (<em>Appears on:</em>
  8419. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  8420. </p>
  8421. <p>
  8422. <p>VaultUserPassAuth authenticates with Vault using UserPass authentication method,
  8423. with the username and password stored in a Kubernetes Secret resource.</p>
  8424. </p>
  8425. <table>
  8426. <thead>
  8427. <tr>
  8428. <th>Field</th>
  8429. <th>Description</th>
  8430. </tr>
  8431. </thead>
  8432. <tbody>
  8433. <tr>
  8434. <td>
  8435. <code>path</code></br>
  8436. <em>
  8437. string
  8438. </em>
  8439. </td>
  8440. <td>
  8441. <p>Path where the UserPassword authentication backend is mounted
  8442. in Vault, e.g: &ldquo;user&rdquo;</p>
  8443. </td>
  8444. </tr>
  8445. <tr>
  8446. <td>
  8447. <code>username</code></br>
  8448. <em>
  8449. string
  8450. </em>
  8451. </td>
  8452. <td>
  8453. <p>Username is a user name used to authenticate using the UserPass Vault
  8454. authentication method</p>
  8455. </td>
  8456. </tr>
  8457. <tr>
  8458. <td>
  8459. <code>secretRef</code></br>
  8460. <em>
  8461. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8462. External Secrets meta/v1.SecretKeySelector
  8463. </a>
  8464. </em>
  8465. </td>
  8466. <td>
  8467. <p>SecretRef to a key in a Secret resource containing password for the
  8468. user used to authenticate with Vault using the UserPass authentication
  8469. method</p>
  8470. </td>
  8471. </tr>
  8472. </tbody>
  8473. </table>
  8474. <h3 id="external-secrets.io/v1beta1.WebhookCAProvider">WebhookCAProvider
  8475. </h3>
  8476. <p>
  8477. (<em>Appears on:</em>
  8478. <a href="#external-secrets.io/v1beta1.WebhookProvider">WebhookProvider</a>)
  8479. </p>
  8480. <p>
  8481. <p>Defines a location to fetch the cert for the webhook provider from.</p>
  8482. </p>
  8483. <table>
  8484. <thead>
  8485. <tr>
  8486. <th>Field</th>
  8487. <th>Description</th>
  8488. </tr>
  8489. </thead>
  8490. <tbody>
  8491. <tr>
  8492. <td>
  8493. <code>type</code></br>
  8494. <em>
  8495. <a href="#external-secrets.io/v1beta1.WebhookCAProviderType">
  8496. WebhookCAProviderType
  8497. </a>
  8498. </em>
  8499. </td>
  8500. <td>
  8501. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  8502. </td>
  8503. </tr>
  8504. <tr>
  8505. <td>
  8506. <code>name</code></br>
  8507. <em>
  8508. string
  8509. </em>
  8510. </td>
  8511. <td>
  8512. <p>The name of the object located at the provider type.</p>
  8513. </td>
  8514. </tr>
  8515. <tr>
  8516. <td>
  8517. <code>key</code></br>
  8518. <em>
  8519. string
  8520. </em>
  8521. </td>
  8522. <td>
  8523. <p>The key the value inside of the provider type to use, only used with &ldquo;Secret&rdquo; type</p>
  8524. </td>
  8525. </tr>
  8526. <tr>
  8527. <td>
  8528. <code>namespace</code></br>
  8529. <em>
  8530. string
  8531. </em>
  8532. </td>
  8533. <td>
  8534. <em>(Optional)</em>
  8535. <p>The namespace the Provider type is in.</p>
  8536. </td>
  8537. </tr>
  8538. </tbody>
  8539. </table>
  8540. <h3 id="external-secrets.io/v1beta1.WebhookCAProviderType">WebhookCAProviderType
  8541. (<code>string</code> alias)</p></h3>
  8542. <p>
  8543. (<em>Appears on:</em>
  8544. <a href="#external-secrets.io/v1beta1.WebhookCAProvider">WebhookCAProvider</a>)
  8545. </p>
  8546. <p>
  8547. </p>
  8548. <table>
  8549. <thead>
  8550. <tr>
  8551. <th>Value</th>
  8552. <th>Description</th>
  8553. </tr>
  8554. </thead>
  8555. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  8556. <td></td>
  8557. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  8558. <td></td>
  8559. </tr></tbody>
  8560. </table>
  8561. <h3 id="external-secrets.io/v1beta1.WebhookProvider">WebhookProvider
  8562. </h3>
  8563. <p>
  8564. (<em>Appears on:</em>
  8565. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  8566. </p>
  8567. <p>
  8568. <p>AkeylessProvider Configures an store to sync secrets using Akeyless KV.</p>
  8569. </p>
  8570. <table>
  8571. <thead>
  8572. <tr>
  8573. <th>Field</th>
  8574. <th>Description</th>
  8575. </tr>
  8576. </thead>
  8577. <tbody>
  8578. <tr>
  8579. <td>
  8580. <code>method</code></br>
  8581. <em>
  8582. string
  8583. </em>
  8584. </td>
  8585. <td>
  8586. <p>Webhook Method</p>
  8587. </td>
  8588. </tr>
  8589. <tr>
  8590. <td>
  8591. <code>url</code></br>
  8592. <em>
  8593. string
  8594. </em>
  8595. </td>
  8596. <td>
  8597. <p>Webhook url to call</p>
  8598. </td>
  8599. </tr>
  8600. <tr>
  8601. <td>
  8602. <code>headers</code></br>
  8603. <em>
  8604. map[string]string
  8605. </em>
  8606. </td>
  8607. <td>
  8608. <em>(Optional)</em>
  8609. <p>Headers</p>
  8610. </td>
  8611. </tr>
  8612. <tr>
  8613. <td>
  8614. <code>body</code></br>
  8615. <em>
  8616. string
  8617. </em>
  8618. </td>
  8619. <td>
  8620. <em>(Optional)</em>
  8621. <p>Body</p>
  8622. </td>
  8623. </tr>
  8624. <tr>
  8625. <td>
  8626. <code>timeout</code></br>
  8627. <em>
  8628. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  8629. Kubernetes meta/v1.Duration
  8630. </a>
  8631. </em>
  8632. </td>
  8633. <td>
  8634. <em>(Optional)</em>
  8635. <p>Timeout</p>
  8636. </td>
  8637. </tr>
  8638. <tr>
  8639. <td>
  8640. <code>result</code></br>
  8641. <em>
  8642. <a href="#external-secrets.io/v1beta1.WebhookResult">
  8643. WebhookResult
  8644. </a>
  8645. </em>
  8646. </td>
  8647. <td>
  8648. <p>Result formatting</p>
  8649. </td>
  8650. </tr>
  8651. <tr>
  8652. <td>
  8653. <code>secrets</code></br>
  8654. <em>
  8655. <a href="#external-secrets.io/v1beta1.WebhookSecret">
  8656. []WebhookSecret
  8657. </a>
  8658. </em>
  8659. </td>
  8660. <td>
  8661. <em>(Optional)</em>
  8662. <p>Secrets to fill in templates
  8663. These secrets will be passed to the templating function as key value pairs under the given name</p>
  8664. </td>
  8665. </tr>
  8666. <tr>
  8667. <td>
  8668. <code>caBundle</code></br>
  8669. <em>
  8670. []byte
  8671. </em>
  8672. </td>
  8673. <td>
  8674. <em>(Optional)</em>
  8675. <p>PEM encoded CA bundle used to validate webhook server certificate. Only used
  8676. if the Server URL is using HTTPS protocol. This parameter is ignored for
  8677. plain HTTP protocol connection. If not set the system root certificates
  8678. are used to validate the TLS connection.</p>
  8679. </td>
  8680. </tr>
  8681. <tr>
  8682. <td>
  8683. <code>caProvider</code></br>
  8684. <em>
  8685. <a href="#external-secrets.io/v1beta1.WebhookCAProvider">
  8686. WebhookCAProvider
  8687. </a>
  8688. </em>
  8689. </td>
  8690. <td>
  8691. <em>(Optional)</em>
  8692. <p>The provider for the CA bundle to use to validate webhook server certificate.</p>
  8693. </td>
  8694. </tr>
  8695. </tbody>
  8696. </table>
  8697. <h3 id="external-secrets.io/v1beta1.WebhookResult">WebhookResult
  8698. </h3>
  8699. <p>
  8700. (<em>Appears on:</em>
  8701. <a href="#external-secrets.io/v1beta1.WebhookProvider">WebhookProvider</a>)
  8702. </p>
  8703. <p>
  8704. </p>
  8705. <table>
  8706. <thead>
  8707. <tr>
  8708. <th>Field</th>
  8709. <th>Description</th>
  8710. </tr>
  8711. </thead>
  8712. <tbody>
  8713. <tr>
  8714. <td>
  8715. <code>jsonPath</code></br>
  8716. <em>
  8717. string
  8718. </em>
  8719. </td>
  8720. <td>
  8721. <em>(Optional)</em>
  8722. <p>Json path of return value</p>
  8723. </td>
  8724. </tr>
  8725. </tbody>
  8726. </table>
  8727. <h3 id="external-secrets.io/v1beta1.WebhookSecret">WebhookSecret
  8728. </h3>
  8729. <p>
  8730. (<em>Appears on:</em>
  8731. <a href="#external-secrets.io/v1beta1.WebhookProvider">WebhookProvider</a>)
  8732. </p>
  8733. <p>
  8734. </p>
  8735. <table>
  8736. <thead>
  8737. <tr>
  8738. <th>Field</th>
  8739. <th>Description</th>
  8740. </tr>
  8741. </thead>
  8742. <tbody>
  8743. <tr>
  8744. <td>
  8745. <code>name</code></br>
  8746. <em>
  8747. string
  8748. </em>
  8749. </td>
  8750. <td>
  8751. <p>Name of this secret in templates</p>
  8752. </td>
  8753. </tr>
  8754. <tr>
  8755. <td>
  8756. <code>secretRef</code></br>
  8757. <em>
  8758. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8759. External Secrets meta/v1.SecretKeySelector
  8760. </a>
  8761. </em>
  8762. </td>
  8763. <td>
  8764. <p>Secret ref to fill in credentials</p>
  8765. </td>
  8766. </tr>
  8767. </tbody>
  8768. </table>
  8769. <h3 id="external-secrets.io/v1beta1.YandexCertificateManagerAuth">YandexCertificateManagerAuth
  8770. </h3>
  8771. <p>
  8772. (<em>Appears on:</em>
  8773. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>)
  8774. </p>
  8775. <p>
  8776. </p>
  8777. <table>
  8778. <thead>
  8779. <tr>
  8780. <th>Field</th>
  8781. <th>Description</th>
  8782. </tr>
  8783. </thead>
  8784. <tbody>
  8785. <tr>
  8786. <td>
  8787. <code>authorizedKeySecretRef</code></br>
  8788. <em>
  8789. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8790. External Secrets meta/v1.SecretKeySelector
  8791. </a>
  8792. </em>
  8793. </td>
  8794. <td>
  8795. <em>(Optional)</em>
  8796. <p>The authorized key used for authentication</p>
  8797. </td>
  8798. </tr>
  8799. </tbody>
  8800. </table>
  8801. <h3 id="external-secrets.io/v1beta1.YandexCertificateManagerCAProvider">YandexCertificateManagerCAProvider
  8802. </h3>
  8803. <p>
  8804. (<em>Appears on:</em>
  8805. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>)
  8806. </p>
  8807. <p>
  8808. </p>
  8809. <table>
  8810. <thead>
  8811. <tr>
  8812. <th>Field</th>
  8813. <th>Description</th>
  8814. </tr>
  8815. </thead>
  8816. <tbody>
  8817. <tr>
  8818. <td>
  8819. <code>certSecretRef</code></br>
  8820. <em>
  8821. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8822. External Secrets meta/v1.SecretKeySelector
  8823. </a>
  8824. </em>
  8825. </td>
  8826. <td>
  8827. </td>
  8828. </tr>
  8829. </tbody>
  8830. </table>
  8831. <h3 id="external-secrets.io/v1beta1.YandexCertificateManagerProvider">YandexCertificateManagerProvider
  8832. </h3>
  8833. <p>
  8834. (<em>Appears on:</em>
  8835. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  8836. </p>
  8837. <p>
  8838. <p>YandexCertificateManagerProvider Configures a store to sync secrets using the Yandex Certificate Manager provider.</p>
  8839. </p>
  8840. <table>
  8841. <thead>
  8842. <tr>
  8843. <th>Field</th>
  8844. <th>Description</th>
  8845. </tr>
  8846. </thead>
  8847. <tbody>
  8848. <tr>
  8849. <td>
  8850. <code>apiEndpoint</code></br>
  8851. <em>
  8852. string
  8853. </em>
  8854. </td>
  8855. <td>
  8856. <em>(Optional)</em>
  8857. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  8858. </td>
  8859. </tr>
  8860. <tr>
  8861. <td>
  8862. <code>auth</code></br>
  8863. <em>
  8864. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerAuth">
  8865. YandexCertificateManagerAuth
  8866. </a>
  8867. </em>
  8868. </td>
  8869. <td>
  8870. <p>Auth defines the information necessary to authenticate against Yandex Certificate Manager</p>
  8871. </td>
  8872. </tr>
  8873. <tr>
  8874. <td>
  8875. <code>caProvider</code></br>
  8876. <em>
  8877. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerCAProvider">
  8878. YandexCertificateManagerCAProvider
  8879. </a>
  8880. </em>
  8881. </td>
  8882. <td>
  8883. <em>(Optional)</em>
  8884. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  8885. </td>
  8886. </tr>
  8887. </tbody>
  8888. </table>
  8889. <h3 id="external-secrets.io/v1beta1.YandexLockboxAuth">YandexLockboxAuth
  8890. </h3>
  8891. <p>
  8892. (<em>Appears on:</em>
  8893. <a href="#external-secrets.io/v1beta1.YandexLockboxProvider">YandexLockboxProvider</a>)
  8894. </p>
  8895. <p>
  8896. </p>
  8897. <table>
  8898. <thead>
  8899. <tr>
  8900. <th>Field</th>
  8901. <th>Description</th>
  8902. </tr>
  8903. </thead>
  8904. <tbody>
  8905. <tr>
  8906. <td>
  8907. <code>authorizedKeySecretRef</code></br>
  8908. <em>
  8909. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8910. External Secrets meta/v1.SecretKeySelector
  8911. </a>
  8912. </em>
  8913. </td>
  8914. <td>
  8915. <em>(Optional)</em>
  8916. <p>The authorized key used for authentication</p>
  8917. </td>
  8918. </tr>
  8919. </tbody>
  8920. </table>
  8921. <h3 id="external-secrets.io/v1beta1.YandexLockboxCAProvider">YandexLockboxCAProvider
  8922. </h3>
  8923. <p>
  8924. (<em>Appears on:</em>
  8925. <a href="#external-secrets.io/v1beta1.YandexLockboxProvider">YandexLockboxProvider</a>)
  8926. </p>
  8927. <p>
  8928. </p>
  8929. <table>
  8930. <thead>
  8931. <tr>
  8932. <th>Field</th>
  8933. <th>Description</th>
  8934. </tr>
  8935. </thead>
  8936. <tbody>
  8937. <tr>
  8938. <td>
  8939. <code>certSecretRef</code></br>
  8940. <em>
  8941. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8942. External Secrets meta/v1.SecretKeySelector
  8943. </a>
  8944. </em>
  8945. </td>
  8946. <td>
  8947. </td>
  8948. </tr>
  8949. </tbody>
  8950. </table>
  8951. <h3 id="external-secrets.io/v1beta1.YandexLockboxProvider">YandexLockboxProvider
  8952. </h3>
  8953. <p>
  8954. (<em>Appears on:</em>
  8955. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  8956. </p>
  8957. <p>
  8958. <p>YandexLockboxProvider Configures a store to sync secrets using the Yandex Lockbox provider.</p>
  8959. </p>
  8960. <table>
  8961. <thead>
  8962. <tr>
  8963. <th>Field</th>
  8964. <th>Description</th>
  8965. </tr>
  8966. </thead>
  8967. <tbody>
  8968. <tr>
  8969. <td>
  8970. <code>apiEndpoint</code></br>
  8971. <em>
  8972. string
  8973. </em>
  8974. </td>
  8975. <td>
  8976. <em>(Optional)</em>
  8977. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  8978. </td>
  8979. </tr>
  8980. <tr>
  8981. <td>
  8982. <code>auth</code></br>
  8983. <em>
  8984. <a href="#external-secrets.io/v1beta1.YandexLockboxAuth">
  8985. YandexLockboxAuth
  8986. </a>
  8987. </em>
  8988. </td>
  8989. <td>
  8990. <p>Auth defines the information necessary to authenticate against Yandex Lockbox</p>
  8991. </td>
  8992. </tr>
  8993. <tr>
  8994. <td>
  8995. <code>caProvider</code></br>
  8996. <em>
  8997. <a href="#external-secrets.io/v1beta1.YandexLockboxCAProvider">
  8998. YandexLockboxCAProvider
  8999. </a>
  9000. </em>
  9001. </td>
  9002. <td>
  9003. <em>(Optional)</em>
  9004. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  9005. </td>
  9006. </tr>
  9007. </tbody>
  9008. </table>
  9009. <hr/>
  9010. <p><em>
  9011. Generated with <code>gen-crd-api-reference-docs</code>.
  9012. </em></p>
  9013. </article>
  9014. </div>
  9015. <script>var target=document.getElementById(location.hash.slice(1));target&&target.name&&(target.checked=target.name.startsWith("__tabbed_"))</script>
  9016. </div>
  9017. </main>
  9018. <footer class="md-footer">
  9019. <div class="md-footer-meta md-typeset">
  9020. <div class="md-footer-meta__inner md-grid">
  9021. <div class="md-copyright">
  9022. <div class="md-copyright__highlight">
  9023. &copy; 2023 The external-secrets Authors.<br/>
  9024. &copy; 2023 The Linux Foundation. All rights reserved.<br/><br/>
  9025. The Linux Foundation has registered trademarks and uses trademarks.<br/>
  9026. For a list of trademarks of The Linux Foundation, please see our <a href="https://www.linuxfoundation.org/trademark-usage/">Trademark Usage page</a>.
  9027. </div>
  9028. Made with
  9029. <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
  9030. Material for MkDocs
  9031. </a>
  9032. </div>
  9033. </div>
  9034. </div>
  9035. </footer>
  9036. </div>
  9037. <div class="md-dialog" data-md-component="dialog">
  9038. <div class="md-dialog__inner md-typeset"></div>
  9039. </div>
  9040. <script id="__config" type="application/json">{"base": "../..", "features": ["navigation.tabs", "navigation.indexes", "navigation.expand"], "search": "../../assets/javascripts/workers/search.b8dbb3d2.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}, "version": {"provider": "mike"}}</script>
  9041. <script src="../../assets/javascripts/bundle.8fd75fb4.min.js"></script>
  9042. </body>
  9043. </html>